.testimonios-container {
  background: #ffffff;
  border-radius: 16px;
  padding-top: 20px;
  padding-bottom: 60px;
  padding-right: 40px;
  padding-left: 40px;
  margin-bottom: 0px;
  margin-top: 0px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.testimonios-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonios-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  position: relative;
  display: inline-block;
}

.testimonios-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0b5f8c 0%, #0a7bb5 100%);
  border-radius: 2px;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonio-card {
  background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
}

.testimonio-card:hover {
  border-color: #0b5f8c;
  box-shadow: 0 8px 24px rgba(11, 95, 140, 0.12);
  transform: translateY(-4px);
}

.testimonio-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonio-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 20px 0;
  font-style: italic;
  position: relative;
  z-index: 1;
  min-height: 88px;
}

.testimonio-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 2px solid #e5e7eb;
}

.author-name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

.author-location {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
}

.author-location::before {
  content: "📍";
  font-size: 12px;
}

/* Responsive - directly from 3 columns to 1 column */
@media (max-width: 1199px) {
  .testimonios-grid {
    grid-template-columns: 1fr;
  }

  .testimonio-text {
    min-height: unset;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonios-container {
    padding: 32px 24px;
    margin: 40px 0;
  }

  .testimonios-title {
    font-size: 26px;
  }

  .testimonios-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonio-card {
    padding: 24px 20px;
  }

  .testimonio-text {
    font-size: 15px;
  }
}