/* Modelos de Gestion - modulo reutilizable */
.nv-management-models {
  --nv-ink: #55554c;
  --nv-text: #696861;
  --nv-muted: #8c887f;
  --nv-line: #ddd6ca;
  --nv-soft: #ede7dc;
  --nv-button: #e5e1db;
  --nv-button-hover: #d8d2c8;
  --nv-button-text: #626156;
  --nv-card: #fffefa;
  --nv-shadow: 0 18px 44px rgba(80, 74, 64, 0.07);
  color: var(--nv-text);
  font-family: inherit;
  padding: clamp(36px, 6vw, 82px) 18px;
  background: #f5f2ed;
}

.nv-management-models *,
.nv-management-models *::before,
.nv-management-models *::after {
  box-sizing: border-box;
}

.nv-management-models__inner {
  max-width: 1220px;
  margin: 0 auto;
}

.nv-management-models__header {
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  text-align: center;
}

.nv-management-models__eyebrow {
  margin: 0 0 10px;
  color: var(--nv-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nv-management-models h2,
.nv-model-card h3,
.nv-model-card__price {
  color: var(--nv-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
}

.nv-management-models h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.nv-management-models__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}

.nv-model-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  padding: clamp(26px, 3vw, 36px) clamp(18px, 2.4vw, 28px) 28px;
  border: 1px solid rgba(221, 214, 202, 0.82);
  border-radius: 18px;
  background: var(--nv-card);
  box-shadow: var(--nv-shadow);
  text-align: center;
}

.nv-model-card__icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--nv-soft);
  color: var(--nv-ink);
}

.nv-model-card__icon svg {
  width: 48px;
  height: 48px;
}

.nv-management-models svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.nv-model-card h3 {
  margin: 0;
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.08;
}

.nv-model-card__subtitle {
  min-height: 28px;
  margin: 10px 0 30px;
  color: var(--nv-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.nv-model-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--nv-soft);
  color: var(--nv-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.nv-model-card__price {
  margin: 0;
  font-size: clamp(44px, 4vw, 66px);
  line-height: 1;
}

.nv-model-card__price span {
  color: var(--nv-text);
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
}

.nv-model-card__price--text {
  font-size: clamp(31px, 2.7vw, 42px);
  line-height: 1.14;
}

.nv-model-card__description {
  max-width: 380px;
  min-height: 62px;
  margin: 24px auto 28px;
  color: var(--nv-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.nv-model-card__features {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: auto;
  padding: 22px 0 24px;
  border-top: 1px solid var(--nv-line);
  border-bottom: 1px solid var(--nv-line);
}

.nv-feature {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 10px;
  color: var(--nv-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.nv-feature:not(:nth-child(3n)) {
  border-right: 1px solid var(--nv-line);
}

.nv-feature:nth-child(n + 4) {
  margin-top: 20px;
}

.nv-feature svg {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  color: var(--nv-ink);
}

.nv-feature span,
.nv-bullet span {
  overflow-wrap: anywhere;
}

.nv-model-card__link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 6px 18px;
  color: var(--nv-ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
}

.nv-model-card__arrow {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--nv-ink);
  stroke-width: 1.6;
}

.nv-model-card__button {
  display: inline-flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 6px;
  background: var(--nv-button);
  color: var(--nv-button-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.nv-model-card__button:hover,
.nv-model-card__button:focus-visible {
  background: var(--nv-button-hover);
  color: var(--nv-button-text);
  transform: translateY(-1px);
}

.nv-model-card--rent {
  align-self: start;
  min-height: auto;
  justify-content: flex-start;
}

.nv-model-card--rent h3 {
  margin-bottom: 34px;
}

.nv-model-card--rent .nv-model-card__description {
  min-height: 0;
  margin-bottom: 22px;
}

.nv-model-card__bullets {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 28px;
  padding: 22px clamp(8px, 2vw, 18px);
  border-top: 1px solid var(--nv-line);
  border-bottom: 1px solid var(--nv-line);
  text-align: center;
}

.nv-bullet {
  display: flex;
  min-height: 148px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 16px 12px;
  border: 1px solid rgba(221, 214, 202, 0.72);
  border-radius: 14px;
  background: rgba(237, 231, 220, 0.28);
  color: var(--nv-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.28;
}

.nv-bullet svg {
  width: 38px;
  height: 38px;
  color: var(--nv-ink);
}

.nv-model-card--rent .nv-model-card__button {
  margin-top: 0;
}

@media (max-width: 1120px) {
  .nv-management-models__grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .nv-management-models {
    padding-right: 14px;
    padding-left: 14px;
  }

  .nv-model-card {
    padding: 26px 16px 20px;
  }

  .nv-model-card__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nv-feature {
    min-height: 110px;
  }

  .nv-feature:not(:nth-child(3n)) {
    border-right: 0;
  }

  .nv-feature:nth-child(odd) {
    border-right: 1px solid var(--nv-line);
  }

  .nv-feature:nth-child(n + 3) {
    margin-top: 20px;
  }

  .nv-model-card--rent h3 {
    margin-bottom: 34px;
  }

  .nv-bullet {
    min-height: 132px;
    gap: 10px;
    padding: 14px 10px;
    font-size: 14px;
  }
}