/* ════════════════════════════
       TESTIMONIOS
    ════════════════════════════ */
#testimonios {
  background: var(--dark-2);
  padding: 100px 0;

  h3 {
    color: var(--blue-light);
    margin-bottom: 25px;
  }
}

#testimonios .section-title {
  color: var(--white);
}

#testimonios .section-sub {
  color: rgba(255, 255, 255, .5);
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 25px;
}

.testimonios-benefits {
  list-style: none;
  margin-bottom: 22px;
}

.testimonios-benefits li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: .875rem;
  color: var(--white);
  padding: 5px 0;
  line-height: 1.5;
}

.testimonios-benefits li i {
  color: var(--blue);
  margin-top: 2px;
  font-size: .75rem;
}

.testi-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 32px;
  transition: var(--transition);
}

.testi-card:hover {
  background: rgba(0, 80, 204, .1);
  border-color: rgba(0, 130, 221, .25);
  transform: translateY(-4px);
}

.testi-stars {
  color: #f59e0b;
  font-size: .85rem;
  margin-bottom: 16px;
}

.testi-text {
  font-size: .95rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-text::before {
  content: '"';
  font-size: 2rem;
  color: var(--blue-light);
  line-height: 0;
  vertical-align: -10px;
  margin-right: 4px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  font-size: .9rem;
}

.testi-name {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: .9rem;
}

.testi-role {
  font-size: .88rem;
  color: rgba(255, 255, 255, .4);
  a {
    color: var(--blue-light);
    margin-top: 10px;
    font-weight: 600;
    text-decoration: none;
  }
}