/* =====================================================
   DEPOIMENTOS
===================================================== */
.cp-depoimentos{

    width:100%;

    max-width:none;

    margin:0;

    padding: 30px 20px;

   
}

.cp-depoimentos-topo{
    text-align:center;
    max-width:900px;
    margin:0 auto 50px;
}

.cp-depoimentos-tag{
    display:block;
    margin-bottom:12px;

    font-size:12px;
    font-weight:700;

    letter-spacing:3px;
    text-transform:uppercase;

    color:#ffcf70;
}

.cp-depoimentos-topo h2{
    margin:0 0 20px;

    font-size:42px;
    font-weight:800;
    line-height:1.15;

    color:#ffffff;
}

.cp-depoimentos-topo p{
    margin:0;

    font-size:18px;
    line-height:1.8;

    color:#f3e7ff;
}




/* =====================================================
   CARROSSEL
===================================================== */
.cp-depoimentos-carousel{
    width:100%;
    max-width:100%;
    margin:0 auto;

    display:grid;

    grid-template-columns:
        48px
        minmax(0,1fr)
        48px;

    align-items:stretch;

    column-gap:10px;

    padding:30px 0;

    overflow:visible;
}

.cp-depoimentos-control{
    display:flex;
    justify-content:center;
    align-items:center;
}

.cp-depoimentos-arrow{
    width:42px;
    height:42px;

    border:none;
    border-radius:50%;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;

    color:#ffffff;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.35),
            rgba(255,255,255,.15)
        );

    transition:.25s;
}

.cp-depoimentos-arrow:hover{
    transform:scale(1.08);
}

.cp-depoimentos-viewport{
    overflow:hidden;
}

.cp-depoimentos-track{
    display:flex;
    gap:24px;
	
    padding:10px 0;

    transition:
        transform .45s ease-in-out;
}

/* =====================================================
   CARD
===================================================== */

.cp-depoimento-card{

    flex:0 0 calc(25% - 18px);

    background:
        linear-gradient(
            180deg,
            rgba(125,40,175,.85),
            rgba(88,20,130,.85)
        );

    border:1px solid rgba(255,255,255,.15);

    border-radius:24px;

    padding:30px;

    box-shadow:
        0 7px 6px rgba(0,0,0,.15);

    transition:.3s;

    position:relative;
	
	display: flex;
    flex-direction: column;
}

.cp-depoimento-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 8px 20px rgba(0,0,0,.40);
}

.cp-depoimento-header{
    display:flex;
    align-items:center;
    gap:15px;

    margin-bottom:25px;
}

.cp-depoimento-header img{
    width:72px;
    height:72px;

    border-radius:50%;

    object-fit:cover;

    border:
        3px solid rgba(255,255,255,.35);
}

.cp-depoimento-header h3{
    margin:0 0 5px;

    color:#ffffff;

    font-size:18px;
    font-weight:700;
}

.cp-estrelas{
    color:#ffd54f;

    font-size: 15px;

    letter-spacing:2px;
}

.cp-origem{
    margin-top:4px;

    font-size:11px;

    text-transform:uppercase;

    color:#ead8ff;
}

.cp-depoimento-card h4{
    margin:0 0 15px;

    color:#ffcf70;

    font-size:24px;
    font-weight:700;
    line-height:1.3;
}

.cp-depoimento-texto{
    margin:0;

    color:#ffffff;

    font-size:15px;
    line-height:1.9;
}

.cp-depoimento-rodape{
    margin-top: auto;
    padding-top:20px;

    border-top:
        1px solid rgba(255,255,255,.15);

    font-size:12px;

    color:#ead8ff;
}

.cp-depoimentos-botao {
	display: inline-block;
	padding: 5px 12px;
	margin: 0;
	background: #f4c542;
	color: #8b1e3f;
	border: 1px solid #d9aa25;
	border-radius: 5px;
	font-size: inherit;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.cp-depoimentos-botao:hover {
	opacity: 0.88;
	transform: translateY(-1px);
	text-decoration: none;
}

/* =====================================================
   RESPONSIVO
===================================================== */

@media (max-width:1100px){

    .cp-depoimento-card{
        flex:0 0 calc(50% - 12px);
    }

}

@media (max-width:767px){

    .cp-depoimentos-carousel{

        grid-template-columns:
            40px
            minmax(0,1fr)
            40px;
    }

    .cp-depoimento-card{
        flex:0 0 100%;
    }

    .cp-depoimentos-topo h2{
        font-size:32px;
    }

    .cp-depoimentos-topo p{
        font-size:16px;
    }

}


.cp-depoimentos-arrow.disabled{

    opacity:.35;

    cursor:default;

    pointer-events:none;

    transform:none;
}






/* =====================================================
   TOPO DEPOIMENTOS
===================================================== */

.cp-depoimentos-topo{

    width:100%;
    max-width:1000px;

    margin:0 auto 50px;
	

    text-align:center;
}

.cp-depoimentos-topo-box{

    display:inline-block;

    width:100%;
    max-width:900px;

    padding:35px 40px;

    border-radius:24px;

    background:rgba(88,20,130,.50)!important;

    border:
        1px solid rgba(255,255,255,.12);

    box-shadow:
        0 15px 35px rgba(0,0,0,.15);
}

/* =====================================================
   TAG
===================================================== */

.cp-depoimentos-tag{

    display:inline-block;

    padding:8px 18px;

    margin-bottom:18px;

    border-radius:999px;

    background:
        linear-gradient(
            180deg,
            rgba(255,207,112,.22),
            rgba(255,207,112,.12)
        );

    border:
        1px solid rgba(255,207,112,.35);

    color:#4b1f5f;

    font-size:12px;
    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;
}

/* =====================================================
   TITULO
===================================================== */

.cp-depoimentos-topo h2{

    display:inline-block;

    margin:0 0 20px;

    padding:14px 25px;

    border-radius:14px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.05)
        );

    color:#4b1f5f;

    font-size:42px;
    font-weight:800;
    line-height:1.2;
}

/* =====================================================
   SUBTITULO
===================================================== */

.cp-depoimentos-topo p {

    max-width:750px;

    margin:0 auto;

    padding:18px 25px;

    border-radius:14px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.03)
        );

    color:#f3e7ff !important;

    font-size:18px;
    line-height:1.8;
}

/* =====================================================
   RESPONSIVO
===================================================== */

@media (max-width:767px){

    .cp-depoimentos-topo-box{

        padding:25px 20px;
    }

    .cp-depoimentos-topo h2{

        font-size:30px;

        padding:12px 18px;
    }

    .cp-depoimentos-topo p{

        font-size:16px;

        padding:15px 18px;
    }

}


.cp-depoimentos-chamada{

    width:100%;

    max-width:1000px;

    margin: 50px auto 0;

    padding: 30px;

    text-align:center;
}

.cp-depoimentos-chamada h3{

    margin:0 0 15px;

    font-size:32px;

    font-weight:700;

    color:#ffffff;
}

.cp-depoimentos-chamada p{

    max-width:800px;

    margin:0 auto 25px;

    line-height:1.8;

    color:#f3e7ff;

    font-size:16px;
}

.cp-depoimentos-chamada-botao{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:14px 28px;

    border-radius:999px;

    text-decoration:none;

    font-weight:700;

    color:#ffffff;

    background:
        linear-gradient(
            135deg,
            #ffcf70,
            #ffb347
        );

    transition:.25s;
}

.cp-depoimentos-chamada-botao:hover{

    transform:translateY(-2px);
}




.cp-depoimentos-aviso{

    width:100%;
    max-width:900px;

    margin: 0 auto 10px;

    padding: 6px 9px;

    background:
        rgba(90,25,140,.55);

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 12px;

    text-align:center;

    color:#ffffff;

    font-size: 8px;

    line-height:1.6;

    font-style:italic;
}

.cp-depoimentos-aviso i{

    color:#ffcf70;

    margin-right: 8px;

    font-style:normal;
}

.cp-depoimentos-aviso strong{

    color:#ffcf70;
    font-weight:700;
}


/* =====================================================
   BLOCO FINAL DE DEPOIMENTOS
===================================================== */

.cp-depoimentos-info{

    width:100%;

    max-width:1260px;

    margin: 30px auto 30px;

    padding:0 20px;
}

.cp-depoimentos-info-box{

    max-width:1000px;

    margin:0 auto;

    padding:40px;

    text-align:center;

    border-radius:24px;

    background:
		linear-gradient(
			180deg,
			rgba(125,40,175,.60),
			rgba(88,20,130,.60)
		);

    border:
        1px solid rgba(125,40,175,.20);
}

.cp-depoimentos-info-box h2{

    margin:0 0 25px;

    color:#7a1e9b;

    font-size:34px;

    font-weight:800;

    line-height:1.2;
}

.cp-depoimentos-info-box p{

    margin:0 0 18px;

    color:#ffffff;

    font-size:17px;

    line-height:1.9;
}

.cp-depoimentos-info-box p:last-of-type{

    margin-bottom:30px;
}

.cp-depoimentos-info-btn{

    display:inline-block;

    padding:14px 28px;

    border-radius:999px;

    text-decoration:none !important;

    font-weight:700;

    font-size:16px;

    color:#ffffff !important;

    background:
        linear-gradient(
            135deg,
            #c818c8,
            #8d169a
        ) !important;

    border:none;

    transition:.25s;
}

.cp-depoimentos-info-btn:hover{

    color:#ffffff !important;

    background:
        linear-gradient(
            135deg,
            #d926d9,
            #9c1cab
        ) !important;

    transform:translateY(-2px);
}

@media (max-width:767px){

    .cp-depoimentos-info{

        margin-top:40px;
    }

    .cp-depoimentos-info-box{

        padding:30px 20px;
    }

    .cp-depoimentos-info-box h2{

        font-size:28px;
    }

    .cp-depoimentos-info-box p{

        font-size:16px;
    }

}