.servicios_planes {
  padding-top: 4%;
  padding-bottom: 4%;
}


.cards-propuesta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding: 20px;
}

.card-propuesta {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.card-propuesta:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.icon-propuesta {
  width: 164px;
  height: 164px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.img-icon-propuesta {
  width: 100%;
  object-fit: contain;
}

/* Colores fondo icono */
.pink-propuesta {
  background: #ffe6ee;
}

.blue-propuesta {
  background: #e6f0ff;
}

.purple-propuesta {
  background: #f0e9ff;
}

.green-propuesta {
  background: #e8f9f1;
}

.title-propuesta {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
}

.text-propuesta {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 16px;
  line-height: 1.4;
  text-align: justify;
}

.badge-propuesta {
  display: inline-block;
  padding: 6px 14px;
  font-size: 1rem;
  color: #ec4899;
  background: #ffe6ee;
  border-radius: 999px;
  font-weight: 500;
}

/* Collapsible 'Ver más' styles */
.more-content {
  display: none;
  text-align: justify;
  margin-top: 12px;
}
.more-content.open {
  display: block;
}
.btn-more {
  display: inline-block;
  margin-top: 10px;
  background: transparent;
  border: none;
  color: var(--primary-color, #7B1FA2);
  cursor: pointer;
  font-weight: 600;
  padding: 0;
}
.btn-more:focus {
  outline: 2px dashed rgba(123,31,162,0.3);
  outline-offset: 4px;
}