/* === SEÇÃO DEPOIMENTOS === */
#depoimentos {
    background: #ffffff;
    /* Fundo claro e limpo */
    padding: 80px 0;
}

.section-testimonials .section-title {
    color: #2c2c2c;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* === CARD DE VÍDEO === */
.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* Sombra mais suave */
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Borda muito sutil */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #000;
    /* Fundo preto para o player */
    /* Proporção 16:9 opcional para placeholder */
    /* aspect-ratio: 16 / 9; */
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    /* max-height: 250px;  Opcional para limitar altura em telas grandes */
}

/* === INFORMAÇÕES DO DEPOIMENTO === */
.testimonial-info {
    padding: 0.5rem 0.5rem 0;
}

.testimonial-name {
    color: #2c2c2c;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
}

/* === RESPONSIVO === */
@media (max-width: 991px) {
    .section-testimonials {
        padding: 60px 0;
    }

    .section-testimonials .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-testimonials .section-title {
        font-size: 1.75rem;
    }

    .video-wrapper {
        margin-bottom: 0.75rem;
    }
}