/* ─── SEÇÃO 6: PROVA SOCIAL ─── */
.v2-proof {
    padding: var(--section-py) 0;
    background: var(--bg-base);
    position: relative;
}

.v2-proof-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.v2-proof-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
}

.v2-proof-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
}

.v2-proof-label::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--gold);
}

.v2-proof-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.2;
    max-width: 640px;
}

.v2-testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    margin-bottom: 56px;
    background: var(--border);
    border: 1px solid var(--border);
}

.v2-testimonial {
    background: var(--bg-card);
    padding: 36px 32px;
    position: relative;
    transition: background 0.2s ease;
}

.v2-testimonial:hover { background: var(--bg-card-hover); }

@media (hover: none) {
    .v2-testimonial { background: var(--bg-card); }
    .v2-testimonial::before { opacity: 0.2; }
}

.v2-testimonial::before {
    content: '\201C';
    position: absolute;
    top: 16px; right: 24px;
    font-family: 'DM Serif Display', serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.12;
    line-height: 1;
}

.v2-testimonial blockquote {
    font-size: 0.96rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 24px;
    font-style: italic;
}

.v2-testimonial-author {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.v2-testimonial-role {
    font-size: 0.75rem;
    color: var(--gold);
    margin-top: 4px;
    font-weight: 500;
}

.v2-proof-cta { padding-top: 8px; }

@media (min-width: 640px) { .v2-testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
    .v2-proof-header { grid-template-columns: 1fr auto; align-items: end; }
    .v2-testimonials { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .v2-proof-inner { padding: 0 20px; }
    .v2-testimonial { padding: 28px 24px; }
}

@media (max-width: 480px) {
    .v2-proof-inner { padding: 0 16px; }
    .v2-testimonial { padding: 24px 20px; }
    .v2-testimonial blockquote { font-size: 0.9rem; }
}
