.testimonios-proximamente {
  padding: 8vh 2vw;
  background: #0c0c0c;
  text-align: center;
}

.testimonios-proximamente h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #25d366, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonios-proximamente p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.testimonios-placeholder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonios-placeholder blockquote {
  background: #111;
  color: #25d366;
  padding: 2rem;
  border-radius: 12px;
  font-style: italic;
  position: relative;
  box-shadow: 0 0 12px rgba(37,21s1,102,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonios-placeholder blockquote::before {
  content: "“";
  font-size: 3rem;
  color: #25d366;
  position: absolute;
  top: 10px;
  left: 15px;
}

.testimonios-placeholder blockquote footer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

.testimonios-placeholder blockquote:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(37,211,102,0.4);
}

