/* Container principal das recomendações */
.testimonials-container {
    max-width: 100%;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Wrapper para o sistema de navegação */
.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    /* background: #fff2e2; */
    border-radius: 8px;
    padding: 4rem 4rem 2rem 4rem;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
}

/* Cada Recomendação individual */
.testimonial-item {
    display: none;
    animation: fadeIn 0.2s ease-in-out;
}

/* Recomendação ativa (visível) */
.testimonial-item.active {
    display: block;
}

/* Animação de fade in */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.testimonial-item h2 {
    text-align: center;
}

/* Estilo do texto da recomendação */
.testimonial-item h4 {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    font-style: italic;
}

.testimonial-item h4, .blockquote-footer {
    margin: 0 0 0 100px;
}

/* Estilo da descrição */
.testimonial-item p {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
    font-style: normal;
}

/* Container dos controles de navegação */
.testimonials-controls {
    display: none; /* display: flex; */
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
}

/* Botões de navegação */
.nav-button {
    background: #fd9b27;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
    user-select: none;
}

.nav-button:hover:not(:disabled) {
    background: #ffb75f;
}

.nav-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Indicador de posição */
.position-indicator {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Responsividade para mobile */
@media (max-width: 767px) {
    .testimonials-wrapper {
        padding: 2rem 3rem 1rem 3rem;
    }

    .testimonial-item h2 {
        text-align: left;
        margin-left: 100px;
    }

    .testimonial-item h4 {
        font-size: 1rem;
    }

    .nav-button {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .testimonial-item img {
        display: none;
    }
    .testimonial-item h2 {
        text-align: center;
        font-size: 2.5rem;
        margin: 0;
    }
    .testimonial-item h4, .blockquote-footer {
        margin: 0;
    }
}