.titulo-secao {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}

.depoimentos-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
}

/* Carrossel */
.carrossel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.depoimentos-carrossel {
    justify-content: space-between;
    display: flex;
    overflow: hidden;
    width: calc(350px * 3 + 20px * 2);
    gap: 20px;
    scroll-behavior: smooth;
}

.card-depoimento {
    width: 300px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
}

.card-depoimento:not(.active) {
    display: none;
}

.foto-cliente {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    float: left;
    border: 3px solid #3498db;
}

.info-cliente {
    overflow: hidden;
}

.info-cliente h3 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 1.2em;
}

.empresa-cargo {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.9em;
}

.depoimento-resumido {
    clear: both;
    padding-top: 15px;
    font-style: italic;
    color: #555;
    margin: 15px 0 0 0;
}

.depoimento-detalhado {
    margin-top: 10px;
    padding-top: 15px;
    color: #333;
    line-height: 1.5;
}


/* Botões de navegação */
.carrossel-btn {
    background: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s;
}

.carrossel-btn:hover {
    background: #2980b9;
}

/* Indicadores */
.carrossel-indicadores {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicador {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
}

.indicador.active {
    background: #3498db;
}

/* Responsividade */
@media (max-width: 1024px) {
    .depoimentos-carrossel {
        width: calc(300px * 2 + 20px);
    }
}

@media (max-width: 768px) {
    .depoimentos-carrossel {
        width: 300px;
    }
    
    .card-depoimento:not(.active) {
        display: none;
    }
    
    .card-depoimento.active {
        display: block;
        margin: 0 auto;
    }
}