/* === DEPOIMENTOS CAROUSEL === */
.section-depoimentos {
    background: linear-gradient(135deg, var(--cinza-claro) 0%, white 100%);
    padding: 100px 0;
}

.depoimentos-carousel {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    overflow: hidden;
}

.depoimentos-track {
    position: relative;
    height: 400px;
}

.depoimento-card {
    position: absolute;
    width: 100%;
    padding: 50px 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(15, 17, 25, 0.1);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.depoimento-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 5;
}

.depoimento-icon {
    font-size: 48px;
    margin-bottom: 25px;
    opacity: 0.3;
}

.depoimento-texto {
    font-size: 20px;
    line-height: 1.8;
    color: var(--preto);
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.85;
}

.depoimento-autor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-top: 25px;
    border-top: 2px solid var(--dourado);
}

.depoimento-autor strong {
    font-size: 18px;
    color: var(--dourado-escuro);
    font-weight: 700;
}

.depoimento-autor span {
    font-size: 14px;
    color: var(--preto);
    opacity: 0.6;
    font-weight: 500;
}

/* Botões de navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dourado);
    color: var(--preto);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(230, 191, 110, 0.4);
}

.carousel-btn:hover {
    background: var(--dourado-escuro);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cinza-medio);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--dourado);
    width: 30px;
    border-radius: 6px;
}

.indicator:hover {
    background: var(--dourado-claro);
}

/* Responsive */
@media (max-width: 768px) {
    .depoimentos-track {
        height: 500px;
    }

    .depoimento-card {
        padding: 40px 30px;
    }

    .depoimento-texto {
        font-size: 18px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
}