/* Estilos para o carrossel personalizado */
.custom-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.custom-carousel {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.custom-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 10px;
}

.depoimentos-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.depoimento-item {
    flex: 0 0 calc(33.333% - 20px);
    margin: 10px;
    box-sizing: border-box;
}

.custom-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background 0.3s;
}

.custom-carousel-control:hover {
    background: rgba(0, 0, 0, 0.8);
}

.custom-carousel-control.prev {
    left: 0;
}

.custom-carousel-control.next {
    right: 0;
}

.custom-carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.custom-carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.custom-carousel-indicators .indicator.active {
    background: #3498db;
}

.custom-carousel-indicators .indicator:hover {
    background: #666;
}

.progress-bar {
    height: 5px;
    background: #3498db;
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
    animation: progress 5s linear infinite;
}

@keyframes progress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Estilos para as estrelas */
.star-rating {
    font-size: 24px;
    margin-top: 10px;
}

.star {
    color: #cccccc;
    margin: 0 2px;
}

.star.filled {
    color: #FFD700; /* Amarelo para estrelas preenchidas */
}

.box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0 25px;
    height: 150px;
    width: 300px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box:hover {
    transform: translateY(-5px);
}

.comentario-box {
    margin-bottom: 20px;
}

.comentario-box p {
    font-style: italic;
    color: #555;
    line-height: 1.3;
    font-size: 13px;
}

.client-info {
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-info .detail-box {
    margin-left: 15px;
}

.client-info .detail-box h5 {
    margin-bottom: -6px;
    color: #fff !important;
}

.client-info .img-box .img-fluid {
    border-radius: 100%;
    border: solid 2px #FE9206;
    width: 80px; 
    height: 80px; 
    object-fit: cover;
    object-position: center;
}


.btn-comentario{
    margin-top: 18px;

}

.btn-comentario .btn-comentario2{
    background: #0F3747;
    color: #fff;
}

/* Responsividade */
@media (max-width: 992px) {
    .depoimento-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .depoimento-item {
        flex: 0 0 100%;
    }
    
    .custom-carousel-control {
        padding: 8px 12px;
        font-size: 18px;
    }
    
    .box {
        width: 100%;
    }
}