.panel{
  background: rgba(255,255,255,0.04);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,0.10);
  border-radius: 16px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
}

.panel__title{
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
}

.list{
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 18px;
  color: #b9c3de;
  line-height: 1.7;
}

.panel__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Panel icon */
.panel__icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.panel__text {
  color: #b9c3de;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

/* ===== TESTIMONIOS ===== */
.testimonios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.testimonio {
  background: rgba(110,168,255,0.06);
  border: 1px solid rgba(110,168,255,0.15);
  border-radius: 16px;
  padding: 22px 24px;
  position: relative;
}

.testimonio::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 48px;
  color: rgba(110,168,255,0.25);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonio__texto {
  color: #b9c3de;
  font-size: 14px;
  line-height: 1.65;
  margin: 16px 0 16px 0;
  font-style: italic;
}

.testimonio__autor {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
}

.testimonio__nombre {
  font-weight: 700;
  font-size: 14px;
  color: #eaf0ff;
}

.testimonio__rol {
  font-size: 12px;
  color: #6ea8ff;
}

@media (max-width: 980px) {
  .testimonios { grid-template-columns: 1fr; }
}
@media (min-width: 601px) and (max-width: 980px) {
  .testimonios { grid-template-columns: 1fr 1fr; }
}
