/* ====== DEPOIMENTOS ====== */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-header .section-subtitle { margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 32px 28px;
  transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars svg { width: 16px; height: 16px; color: #E5A44D; }
.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--rose-gold-light), var(--rose-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ====== CTA SECTION ====== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--wood) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.02) 40px,
    rgba(255,255,255,0.02) 80px
  );
  pointer-events: none;
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .cta-btn {
  background: #fff;
  color: var(--rose-gold);
}
.cta-section .cta-btn:hover {
  box-shadow: 0 8px 30px rgba(255,255,255,0.3);
}
