/* Testimonials section styles inspired by Mestres Místicos */
.depoimentos-section {
  padding: 80px 0;
  background: var(--background-light);
  background-image: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.depoimentos-section h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.depoimento-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--accent-gold);
  transition: all 0.3s ease;
  position: relative;
}

.depoimento-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent-gold);
  font-family: serif;
  line-height: 1;
}

.depoimento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.depoimento-card p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  padding-top: 20px;
}

.depoimento-card strong {
  color: var(--accent-gold);
  font-weight: bold;
  font-style: normal;
  display: block;
  text-align: right;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

/* Full testimonials page styles */
.depoimentos-page {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  min-height: 100vh;
}

.depoimentos-page h1 {
  font-size: 3rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 2px 2px 4px var(--shadow);
}

.depoimento-item {
  background: var(--card-background);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 4px solid var(--accent-gold);
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
}

.depoimento-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px var(--shadow);
}

.depoimento-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.depoimento-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--text-dark);
}

.depoimento-info h3 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.depoimento-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.depoimento-rating {
  margin-left: auto;
}

.depoimento-text {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1rem;
}

.depoimento-consultant {
  color: var(--accent-green);
  font-weight: bold;
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Responsive testimonials */
@media (max-width: 768px) {
  .depoimentos-section {
    padding: 60px 0;
  }

  .depoimentos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .depoimento-card {
    padding: 20px;
  }

  .depoimentos-page h1 {
    font-size: 2.2rem;
  }

  .depoimento-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .depoimento-rating {
    margin-left: 0;
  }
}
.ver-todos-container {
  margin-top: 20px;
  text-align: center; /* centraliza o botão */
}

.ver-todos-container .btn-primary {
  display: inline-block;
}


