/* ============================================
   TESTIMONIALS - TruScale Conheça TruScale
   Seção: Empresas que se transformaram
   ============================================ */

#truscale-lp #section-testimonials {
  padding: 80px 0;
  background: linear-gradient(
    65.04deg,
    rgba(241, 225, 237, 1) 24.26%,
    rgba(234, 238, 245, 1) 116.5%
  );
  position: relative;
}

#truscale-lp #section-testimonials h2 {
  font-family: var(--font-gotham-bold);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.22;
  color: var(--color-black);
  text-align: center;
  margin-bottom: 60px;
  max-width: 732px;
  margin-left: auto;
  margin-right: auto;
}

#truscale-lp #section-testimonials h2 .highlight {
  color: var(--color-primary-red);
}

#truscale-lp #section-testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
}

#truscale-lp #section-testimonials .testimonial-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

#truscale-lp #section-testimonials .testimonial-card--large {
  min-height: 360px;
}

#truscale-lp #section-testimonials .testimonial-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}

#truscale-lp #section-testimonials .testimonial-quote {
  font-family: var(--font-gotham-bold);
  font-size: 100px;
  line-height: 0.24;
  color: var(--color-quote-red);
  margin: 0;
  flex-shrink: 0;
  align-self: flex-start;
}

#truscale-lp #section-testimonials .testimonial-text {
  font-family: var(--font-gotham-book-italic);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-dark);
  max-width: 378px;
  flex: 1;
}

#truscale-lp #section-testimonials .testimonial-author {
  font-family: var(--font-gotham-book);
  font-size: 16px;
  line-height: 1.125;
  color: var(--color-text-dark);
}

#truscale-lp #section-testimonials .testimonial-author strong {
  font-family: var(--font-gotham-bold);
  display: block;
  margin-bottom: 4px;
}

#truscale-lp #section-testimonials .testimonial-author .role {
  font-size: 14px;
}

#truscale-lp #section-testimonials .cta-button {
  display: block;
  background: var(--color-primary-red);
  color: var(--color-white);
  font-family: var(--font-gotham-bold);
  font-size: 14px;
  padding: 12px 20px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  max-width: 354px;
  margin: 40px auto 0;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  #truscale-lp #section-testimonials .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  #truscale-lp #section-testimonials {
    padding: 60px 0;
  }

  #truscale-lp #section-testimonials h2 {
    font-size: 28px;
  }

  #truscale-lp #section-testimonials .testimonial-card {
    min-height: auto;
    padding: 30px 20px;
  }

  #truscale-lp #section-testimonials .testimonial-quote {
    font-size: 80px;
  }

  #truscale-lp #section-testimonials .testimonial-content {
    gap: 8px;
  }
}

