.tzu-testimonials{
padding:100px 20px;
background:linear-gradient(180deg,#f4f7fb,#ffffff);
}

.tzu-container{
max-width:1200px;
margin:auto;
}

.tzu-title{
text-align:center;
font-size:28px;
margin-bottom:60px;
font-weight:400;
}

/* WRAPPER */

.tzu-slider-wrapper{
position:relative;
display:flex;
align-items:center;
}

/* SLIDER */

.tzu-slider{
display:flex;
gap:30px;
overflow:hidden;
scroll-behavior:smooth;
}

/* CARD */

.tzu-card{
flex:0 0 33.333%;
max-width:33.333%;

background:#fff;
padding:18px;
border-radius:20px;

box-shadow:
0 10px 30px rgba(0,0,0,0.08),
0 30px 80px rgba(0,0,0,0.05);

transition:0.4s;
cursor:pointer;
position:relative;
}

.tzu-card:hover{
transform:translateY(-10px) scale(1.02);
}

.tzu-card img{
width:100%;
border-radius:12px;
}

/* ICON */

.tzu-icon{
position:absolute;
top:12px;
left:12px;

background:#1877F2;
color:#fff;

padding:7px;
border-radius:50%;
font-size:12px;
}

/* BOTÕES */

.tzu-btn{
position:absolute;
top:50%;
transform:translateY(-50%);

width:50px;
height:50px;

border-radius:50%;
border:none;

background:#fff;
cursor:pointer;

box-shadow:0 10px 25px rgba(0,0,0,0.2);
z-index:10;

transition:0.3s;
}

.tzu-btn:hover{
transform:translateY(-50%) scale(1.1);
}

.prev{ left:-20px; }
.next{ right:-20px; }

/* RESPONSIVO */

@media(max-width:1024px){
.tzu-card{
flex:0 0 50%;
max-width:50%;
}
}

@media(max-width:768px){

.tzu-card{
flex:0 0 85%;
max-width:85%;
}

/* esconder botões em touch */
.tzu-btn{
display:none;
}

}

/* LIGHTBOX */

.tzu-lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.95);
justify-content:center;
align-items:center;
z-index:9999;
}

.tzu-lightbox-img{
max-width:95%;
max-height:90%;
border-radius:12px;
}

.tzu-close{
position:absolute;
top:20px;
right:30px;
color:#fff;
font-size:40px;
cursor:pointer;
}