/* Compliance Soluções - estilos */
.cs-depoimentos-section {
    text-align: center;
    margin: 40px auto;
    max-width: 1200px;
    background-color: #d11c75;
    padding: 20px;
    border-radius: 20px;
}

.cs-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 350px;
    position: relative;
    overflow: hidden;
}

.cs-logo-wrap {
    text-align: center;
    margin: 10px auto 20px;
}

.cs-logo {
    max-height: 50px;
    width: auto;
}

.cs-text-wrap {
    background-color: #e6e6fa;
    padding: 30px 20px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    min-height: 80px;
}

.cs-text {
    font-size: 16px;
    color: #4b2a64;
    margin: 0;
    font-style: italic;
}

.cs-author-wrap {
    text-align: center;
    margin-top: 15px;
}

.cs-author {
    font-weight: bold;
    color: #4b2a64;
    font-size: 16px;
    margin: 0;
}

.cs-company {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    text-align: center;
}

.cs-card::before {
    content: '';
    background-color: #e6e6fa;
    width: 150%;
    height: 150%;
    position: absolute;
    top: 50%;
    left: -25%;
    border-radius: 50% 50% 0 0;
    transform: rotate(-10deg);
    z-index: 1;
}