.ventajas {
  background: #f4f6f9;
  padding-top: 48px;
  padding-bottom: 32px;
}

.ventajas-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 30px 24px;
  margin-top: 40px;
}

.simple-card {
  max-width: 350px;
  margin: 0 auto;
  background: transparent;
  border-radius: 20px;
  box-shadow: 0 2px 18px 0 rgba(0,0,0,0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.simple-card:hover {
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.13);
}

.simple-card figure {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.simple-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.simple-card-body {
  background: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 26px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.simple-card-body h3 {
  font-family: 'Segoe UI', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.09rem;
  margin: 0 0 13px 0;
  letter-spacing: 0.01em;
}
.simple-card-body p {
  color: #232323;
  font-size: 1.01rem;
  line-height: 1.56;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .ventajas-cards {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}
@media (max-width: 600px) {
  .ventajas-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .simple-card figure {
    height: 120px;
  }
  .simple-card-body {
    padding: 15px 11px 14px 11px;
  }
}