.ventajas-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  text-align: center;
  margin-top: 40px;
}

.circle-center {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.circle-center img {
  width: 90%;
  height: auto;
}

.ventaja-item {
  margin: 40px 0;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 32px;
  color: #fff;
}

.green { background: var(--green-700); }

.ventaja-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--ink);
}

.ventaja-item p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
  max-width: 240px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .ventajas-wrapper {
    grid-template-columns: 1fr;
  }

  .ventajas-center {
    order: -1;
    margin-bottom: 30px;
  }
}
