/* MCID — Plataformas SaaS
   Hoja independiente para evitar que caché o una versión anterior de styles.css
   deje la sección sin formato. */

.saas-showcase {
  display: grid;
  gap: 24px;
  margin-top: 40px;
  padding: 30px;
  background: #f7fbfd;
  border: 1px solid #d7e5ec;
  border-radius: 18px;
}

.saas-showcase-header {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

.saas-kicker {
  margin: 0;
  color: #21a98c;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.04px;
  text-transform: uppercase;
}

.saas-showcase-header h3 {
  max-width: 900px;
  margin: 0;
  color: #071b2b;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 38px;
  letter-spacing: -.25px;
}

.saas-showcase-header > p:last-child {
  margin: 0;
  color: #5f7484;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 25px;
}

.saas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.saas-card {
  display: flex;
  min-width: 0;
  min-height: 345px;
  flex-direction: column;
  gap: 13px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid #d7e5ec;
  border-radius: 14px;
}

.saas-product-identity {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.saas-logo {
  display: block;
  width: 180px;
  height: 56px;
  flex: 0 0 180px;
  object-fit: contain;
  object-position: left center;
  background: #fff;
}

.saas-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: .2px;
  white-space: nowrap;
}

.saas-pill-ciso {
  color: #5168f5;
  background: #eef1ff;
}

.saas-pill-dpo {
  color: #0b9b7a;
  background: #eafbf6;
}

.saas-card > h3 {
  margin: 0;
  color: #071b2b;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  letter-spacing: -.2px;
}

.saas-description {
  margin: 0;
  color: #5f7484;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 15px;
  line-height: 23px;
}

.saas-features {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: #455f70;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
  list-style: none;
}

.saas-features li {
  position: relative;
  padding-left: 17px;
}

.saas-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5168f5;
}

.saas-features-dpo li::before {
  background: #0b9b7a;
}

.saas-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  text-decoration: none;
}

.saas-link-ciso { color: #5168f5; }
.saas-link-dpo { color: #0b9b7a; }

.saas-link:hover,
.saas-link:focus-visible {
  color: #071b2b;
}

@media (max-width: 980px) {
  .saas-grid {
    grid-template-columns: 1fr;
  }

  .saas-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .saas-showcase {
    margin-top: 32px;
    padding: 20px;
    border-radius: 16px;
  }

  .saas-showcase-header h3 {
    font-size: 24px;
    line-height: 31px;
  }

  .saas-product-identity {
    min-height: 0;
    flex-wrap: wrap;
  }

  .saas-logo {
    width: 160px;
    height: 50px;
    flex-basis: 160px;
  }

  .saas-card {
    padding: 20px;
  }

  .saas-pill {
    font-size: 11px;
  }
}
