/* ============================================
   DEPOIMENTOS
   ============================================ */

.depoimentos-section { background: var(--dark-2); }
.depoimentos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.depoimento-card { background: var(--dark-3); padding: 2rem; border-radius: var(--radius); border: 1px solid var(--dark-4); transition: var(--transition); position: relative; }
.depoimento-card::before { content: '"'; position: absolute; top: 1rem; right: 1.5rem; font-family: 'Oswald', sans-serif; font-size: 4rem; color: var(--red); opacity: 0.15; line-height: 1; }
.depoimento-card:hover { transform: translateY(-5px); border-color: var(--red); box-shadow: var(--glow-red); }
.depoimento-stars { margin-bottom: 1rem; }
.depoimento-stars i { color: #F59E0B; font-size: 0.9rem; }
.depoimento-card > p { color: var(--silver); font-style: italic; line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.92rem; }
.depoimento-author { display: flex; align-items: center; gap: 0.75rem; }
.depoimento-avatar { width: 45px; height: 45px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.85rem; }
.depoimento-author strong { display: block; font-size: 0.92rem; color: var(--white); }
.depoimento-author span { font-size: 0.8rem; color: var(--silver-dark); }
