/* ── Seção de Depoimentos ── */
#div5 {
    width: 100%;
    background: #0D0018;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 24px;
}

#Text1div5 {
    text-align: center;
    margin-bottom: 48px;
}

#Veja {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 42px;
    line-height: 1.2;
    color: #F0EBF8;
    margin: 0;
}

#NossosClientes {
    font-weight: 700;
    color: #D4AF37;
}

/* ── Grid de cards ── */
#testimonialsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    width: 100%;
    margin-bottom: 64px;
}

@media (max-width: 900px) {
    #testimonialsGrid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

/* ── Card individual ── */
.testimonial-card {
    background: #1A0A2E;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 18px;
    padding: 28px 26px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.25s;
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
}

.testimonial-quote-mark {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 52px;
    color: #D4AF37;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 0.8;
    user-select: none;
}

.testimonial-stars {
    color: #D4AF37;
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: rgba(240, 235, 248, 0.82);
    line-height: 1.75;
    flex: 1;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: auto;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7B2FBE, #D4AF37);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: #F0EBF8;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 14px;
    color: #F0EBF8;
}

.testimonial-company {
    font-size: 12px;
    color: rgba(240, 235, 248, 0.45);
    margin-top: 2px;
}

/* ── Logo dos clientes (mantido) ── */
@media (min-width: 800px) {
    #Imagemdiv5Mv { display: none; }
    #Imagemdiv5 { display: block; }
}
@media (max-width: 800px) {
    #Imagemdiv5Mv { display: block; }
    #Imagemdiv5 { display: none; }
}

#Imagemdiv5 img {
    width: 65%;
    max-width: 100%;
    height: auto;
    margin: 0 auto 10px auto;
    display: block;
}

#Imagemdiv5Mv img {
    width: 73%;
    max-width: 100%;
    height: auto;
    margin: 0 auto 10px auto;
    display: block;
}

#Imagemdiv5,
#Imagemdiv5Mv {
    padding-bottom: 20px;
}

@media (max-width: 460px) {
    #div5 { padding: 56px 16px; }
    #Veja { font-size: 28px; }
}
