
/* ============================================================
   NEOTHEK · WEB HOSTING · PRICING V7
   Bootstrap 5 + Font Awesome 6
   Mobile first · Accesibilidad AA · CSS aislado con prefijo wh-
============================================================ */

.wh-pricing {
  --wh-blue: #2563eb;
  --wh-blue-bright: #3478f6;
  --wh-blue-dark: #1d4ed8;
  --wh-blue-soft: #eaf2ff;
  --wh-navy: #102e5c;
  --wh-navy-deep: #0b2447;
  --wh-violet: #7657e8;
  --wh-violet-soft: #f2efff;
  --wh-green: #168a4a;
  --wh-green-soft: #effaf3;
  --wh-text: #111827;
  --wh-text-secondary: #475569;
  --wh-text-muted: #64748b;
  --wh-line: #d8e3f1;
  position: relative;
  overflow: hidden;
  padding: 82px 0 76px;
  background:
    radial-gradient(circle at 50% 0, rgba(52, 120, 246, 0.13), transparent 31%),
    linear-gradient(180deg, #f3f7fd 0%, #f8faff 48%, #f1f6fc 100%);
  color: var(--wh-text);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
}

.wh-pricing *,
.wh-pricing *::before,
.wh-pricing *::after {
  box-sizing: border-box;
}

.wh-pricing::before {
  position: absolute;
  top: 300px;
  left: 50%;
  width: min(1100px, 95vw);
  height: 600px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.055), transparent 68%);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.wh-container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
}

/* ============================================================
   ENCABEZADO
============================================================ */
.wh-pricing-header {
  max-width: 850px;
  margin-inline: auto;
}

.wh-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--wh-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
}

.wh-section-eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wh-blue-bright);
  box-shadow: 0 0 0 6px rgba(52, 120, 246, 0.1);
  content: "";
}

.wh-pricing-header h2 {
  margin: 0;
  color: var(--wh-text);
  font-family: "Open Sans Condensed", "Open Sans", Arial, sans-serif;
  font-size: clamp(46px, 11vw, 66px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.wh-pricing-header h2 span {
  display: block;
  color: var(--wh-blue);
}

.wh-pricing-header p {
  max-width: 700px;
  margin: 23px auto 0;
  color: var(--wh-text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================================
   SELECTOR DE PERÍODO
============================================================ */
.wh-period-area {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 42px;
}

.wh-period-label {
  margin: 0 0 13px;
  color: #34445a;
  font-size: 15px;
  font-weight: 600;
}

.wh-period-selector {
  display: grid;
  width: min(100%, 510px);
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 6px;
  border: 1px solid #cbd9e9;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 9px 28px rgba(16, 46, 92, 0.07);
}

.wh-period-option {
  position: relative;
  display: flex;
}

.wh-period-option .wh-period-btn {
  width: 100%;
}

.wh-period-btn {
  display: flex;
  min-height: 59px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: #526177;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.wh-period-btn:hover {
  background: var(--wh-blue-soft);
  color: var(--wh-blue-dark);
}

.wh-period-btn.is-active {
  background: var(--wh-navy);
  box-shadow: 0 8px 20px rgba(16, 46, 92, 0.18);
  color: #fff;
}

.wh-period-btn:focus-visible,
.wh-card-cta:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.42);
  outline-offset: 3px;
}

.wh-period-years {
  font-size: 14px;
  font-weight: 700;
}

.wh-period-btn small {
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.78;
}

.wh-period-saving {
  color: var(--wh-green) !important;
  opacity: 1 !important;
}

.wh-period-btn.is-active .wh-period-saving {
  color: #9becb9 !important;
}

.wh-best-saving {
  position: absolute;
  top: -26px;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7657e8, #5b5fe9);
  box-shadow: 0 7px 17px rgba(118, 87, 232, 0.23);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.065em;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
}

.wh-pricing-promises {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-top: 19px;
  color: #526177;
  font-size: 14px;
}

.wh-pricing-promises span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.wh-pricing-promises i {
  color: var(--wh-green);
}

/* ============================================================
   TARJETAS
============================================================ */
.wh-plans-row {
  margin-top: 58px;
}

.wh-price-card {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  overflow: visible;
  padding: 0 25px 31px;
  border: 1px solid #ccd9e8;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.wh-price-card:hover {
  border-color: #aec3da;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.11);
  transform: translateY(-4px);
}

.wh-price-card--featured {
  border: 2px solid var(--wh-blue-bright);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.15);
}

.wh-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 17px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4385fa, #2563eb);
  box-shadow: 0 9px 23px rgba(37, 99, 235, 0.3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.wh-card-head {
  min-height: 164px;
  margin: 0 -25px;
  padding: 36px 25px 27px;
  border-radius: 19px 19px 0 0;
  background: linear-gradient(180deg, #fff, #fbfdff);
}

.wh-card-head--featured {
  background: linear-gradient(135deg, var(--wh-navy-deep), #17457f);
}

.wh-card-plan {
  display: block;
  margin-bottom: 14px;
  color: var(--wh-blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
}

.wh-card-head--featured .wh-card-plan {
  color: #9fc7ff;
}

.wh-card-head h3 {
  margin: 0;
  color: var(--wh-text);
  font-family: "Open Sans Condensed", "Open Sans", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.wh-card-head p {
  margin: 11px 0 0;
  color: #5b6c82;
  font-size: 14px;
  line-height: 1.5;
}

.wh-card-head--featured .wh-card-plan { color: #8fbdff; }
.wh-card-head--featured h3 { color: #fff; }
.wh-card-head--featured p { color: #d4e1f2; }

/* Precio */
.wh-card-price {
  padding: 25px 0 18px;
}

.wh-price-discount-line {
  display: flex;
  min-height: 27px;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.wh-price-before {
  display: none;
  color: #718198;
  font-size: 12px;
  font-weight: 600;
  text-decoration: line-through;
}

.wh-price-before.is-visible { display: inline; }

.wh-saving-badge {
  display: none;
  padding: 5px 8px;
  border-radius: 999px;
  background: #dcf7e5;
  color: #13743c;
  font-size: 11px;
  font-weight: 700;
}

.wh-saving-badge.is-visible { display: inline-block; }

.wh-price-main {
  display: flex;
  min-height: 73px;
  align-items: flex-start;
  line-height: 1;
}

.wh-price-currency {
  margin: 9px 5px 0 0;
  color: #344054;
  font-size: 23px;
  font-weight: 700;
}

.wh-price-integer {
  color: #091222;
  font-size: 68px;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.wh-price-decimals {
  position: relative;
  top: 5px;
  margin-left: 4px;
  color: #091222;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.wh-price-period {
  align-self: flex-end;
  margin: 0 0 10px 7px;
  color: #45566e;
  font-size: 13px;
  font-weight: 700;
}

.wh-contract-total {
  margin: 8px 0 0;
  color: #5b6d83;
  font-size: 13px;
  line-height: 1.4;
}

.wh-price-monthly {
  margin: 7px 0 0;
  color: #4d6078;
  font-size: 14px;
  line-height: 1.4;
}

.wh-price-monthly strong {
  color: #15253c;
  font-weight: 700;
}

.wh-contract-total strong {
  color: #25364b;
  font-weight: 700;
}

/* Garantía de renovación */
.wh-renewal-benefit {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  margin: 14px 0 17px;
  padding: 9px 11px;
  border: 1px solid #bfe5cb;
  border-radius: 12px;
  background: linear-gradient(135deg, #effaf3, #f8fdf9);
}

.wh-renewal-benefit > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.wh-renewal-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 10px;
  background: #d9f7e3;
  color: var(--wh-green);
  font-size: 15px;
}

.wh-renewal-benefit strong {
  color: #126833;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.wh-renewal-benefit small {
  color: #4e705d;
  font-size: 12.5px;
  line-height: 1.35;
}

.wh-card-domain-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 12px 0 0;
  color: #3f526a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.wh-card-domain-proof i {
  color: var(--wh-green);
  font-size: 13px;
}

/* CTA: especificidad deliberada contra estilos globales de enlaces */
.wh-pricing a.wh-card-cta,
.wh-pricing a.wh-card-cta:link,
.wh-pricing a.wh-card-cta:visited {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1.5px solid #aebfd4;
  border-radius: 11px;
  background: #fff;
  color: #111b2d !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.wh-pricing a.wh-card-cta:hover {
  border-color: var(--wh-blue);
  box-shadow: 0 10px 23px rgba(37, 99, 235, 0.11);
  color: var(--wh-blue-dark) !important;
  text-decoration: none !important;
  transform: translateY(-2px);
}

.wh-pricing a.wh-card-cta:active { transform: translateY(0); }

.wh-pricing a.wh-card-cta--primary,
.wh-pricing a.wh-card-cta--primary:link,
.wh-pricing a.wh-card-cta--primary:visited {
  border-color: transparent;
  background: linear-gradient(135deg, #3982f7, #2563eb);
  box-shadow: 0 11px 27px rgba(37, 99, 235, 0.25);
  color: #fff !important;
}

.wh-pricing a.wh-card-cta--primary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #4a8bfa, #1d4ed8);
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.32);
  color: #fff !important;
}

/* Capacidades */
.wh-main-specs {
  display: grid;
  gap: 4px;
  margin-top: 17px;
  padding: 19px 0;
  border-top: 1px solid #dfe7f0;
  border-bottom: 1px solid #dfe7f0;
}

.wh-main-spec {
  display: flex;
  min-height: 65px;
  align-items: center;
  gap: 14px;
}

.wh-spec-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  place-items: center;
  border-radius: 11px;
  background: var(--wh-blue-soft);
  color: var(--wh-blue);
  font-size: 15px;
}

.wh-spec-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.wh-spec-copy strong {
  color: #152033;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.wh-spec-copy small {
  color: #66788f;
  font-size: 12px;
  line-height: 1.4;
}

/* Incluido */
.wh-card-features {
  flex: 1;
  padding-top: 24px;
}

.wh-features-title {
  display: block;
  margin-bottom: 17px;
  color: #26364c;
  font-size: 14px;
  font-weight: 700;
}

.wh-card-features ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wh-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #405168;
  font-size: 13px;
  line-height: 1.45;
}

.wh-card-features li i {
  margin-top: 4px;
  color: var(--wh-green);
  font-size: 10px;
}

.wh-card-features li strong { font-weight: 700; }
.wh-feature-commercial { color: #26364a !important; }
.wh-card-features .wh-feature-ai { color: #443482; }
.wh-card-features .wh-feature-ai i { color: var(--wh-violet); }

/* ============================================================
   FRANJA DE CONFIANZA TÉCNICA
============================================================ */
.wh-assurance {
  overflow: hidden;
  margin: 38px 0 0;
  border: 1px solid #cbd8e7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.wh-assurance-intro,
.wh-assurance-item {
  min-height: 106px;
  padding: 21px 23px;
}

.wh-assurance-intro {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(135deg, var(--wh-navy-deep), #163d70);
}

.wh-assurance-intro span {
  margin-bottom: 8px;
  color: #8dbbff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.wh-assurance-intro strong {
  max-width: 240px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.wh-assurance-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
}

.wh-assurance-item > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wh-assurance-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  place-items: center;
  border-radius: 11px;
  background: var(--wh-blue-soft);
  color: var(--wh-blue);
  font-size: 15px;
}

.wh-assurance-item strong {
  color: #26364b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.wh-assurance-item small {
  color: #66788f;
  font-size: 11px;
  line-height: 1.35;
}

.wh-pricing-legal {
  max-width: 990px;
  margin: 19px auto 0;
  color: #64758a;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

/* ============================================================
   TABLET
============================================================ */
@media (min-width: 768px) {
  .wh-pricing { padding: 96px 0 90px; }
  .wh-pricing-header p { font-size: 17px; }
  .wh-period-area { margin-top: 48px; }

  .wh-price-card {
    padding-inline: 31px;
  }

  .wh-card-head {
    margin-inline: -31px;
    padding-inline: 31px;
  }
}

/* ============================================================
   DESKTOP
============================================================ */
@media (min-width: 992px) {
  .wh-pricing { padding: 112px 0 106px; }
  .wh-pricing-header h2 { font-size: 70px; }
  .wh-plans-row { margin-top: 70px; }

  /* GROW se diferencia mediante color, borde y badge.
     No se desplaza verticalmente para conservar la alineación. */
  .wh-price-card--featured,
  .wh-price-card--featured:hover {
    transform: none;
  }

  .wh-assurance-item:not(:last-child)::after {
    position: absolute;
    top: 24%;
    right: 0;
    width: 1px;
    height: 52%;
    background: #dfe7f0;
    content: "";
  }
}

/* ============================================================
   MÓVIL
============================================================ */
@media (max-width: 767.98px) {
  .wh-period-selector {
    width: 100%;
  }

  .wh-best-saving {
    top: -28px;
    font-size: 11px;
  }

  .wh-pricing-promises {
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }

  .wh-plans-row {
    margin-top: 52px;
  }

  .wh-price-card {
    max-width: 520px;
    margin-inline: auto;
  }

  .wh-price-card--featured {
    margin-top: 11px;
    margin-bottom: 4px;
  }

  .wh-assurance {
    max-width: 520px;
    margin-inline: auto;
    margin-top: 32px;
  }

  .wh-assurance-intro,
  .wh-assurance-item {
    min-height: 92px;
  }

  .wh-assurance-item:not(:last-child) {
    border-bottom: 1px solid #dfe7f0;
  }
}

@media (max-width: 410px) {
  .wh-period-selector { gap: 3px; padding: 4px; }
  .wh-period-btn { min-height: 57px; padding-inline: 5px; }
  .wh-period-years { font-size: 13px; }
  .wh-period-btn small { font-size: 11px; }
  .wh-price-card { padding-inline: 21px; }
  .wh-card-head { margin-inline: -21px; padding-inline: 21px; }
  .wh-price-integer { font-size: 62px; }
}

/* ============================================================
   AJUSTE PREMIUM 2026
   Más presencia visual y protección frente a los anchos de
   .container definidos por Bootstrap.
============================================================ */
.wh-pricing .wh-container {
  width: min(calc(100% - 32px), 1280px) !important;
  max-width: 1280px !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.wh-price-card {
  padding: 0 28px 36px;
  border-color: #c5d4e6;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(15, 36, 70, 0.09);
}

.wh-price-card:hover {
  border-color: #9cb9dc;
  box-shadow: 0 26px 64px rgba(15, 36, 70, 0.14);
}

.wh-price-card--featured {
  box-shadow: 0 28px 70px rgba(37, 99, 235, 0.2);
}

.wh-card-head {
  position: relative;
  min-height: 184px;
  margin: 0 -28px;
  padding: 42px 28px 30px;
  border-radius: 21px 21px 0 0;
  background: linear-gradient(145deg, #fff 0%, #f6f9fe 100%);
}

.wh-card-head::after {
  position: absolute;
  right: 28px;
  bottom: 0;
  left: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.32), rgba(37, 99, 235, 0));
  content: "";
}

.wh-card-head--featured {
  background: linear-gradient(135deg, var(--wh-navy-deep), #17457f);
}

.wh-card-head--featured::after {
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.14);
}

.wh-card-head h3 { font-size: 33px; }
.wh-card-head p { font-size: 14.5px; line-height: 1.55; }
.wh-card-price { padding: 29px 0 21px; }
.wh-price-integer { font-size: 74px; }
.wh-contract-total { font-size: 13px; }

.wh-renewal-benefit {
  min-height: 60px;
  padding: 10px 12px;
  border-color: #b4dfc2;
  border-radius: 14px;
}

.wh-renewal-benefit strong { font-size: 14px; }
.wh-renewal-benefit small { font-size: 12.5px; }

.wh-pricing a.wh-card-cta,
.wh-pricing a.wh-card-cta:link,
.wh-pricing a.wh-card-cta:visited {
  min-height: 60px;
  border-radius: 13px;
  font-size: 15px;
}

.wh-main-specs {
  margin-top: 27px;
  padding: 22px 0;
}

.wh-main-spec { min-height: 70px; }

.wh-spec-icon {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
  font-size: 16px;
}

.wh-spec-copy strong { font-size: 16px; }
.wh-spec-copy small { font-size: 13px; }
.wh-card-features { padding-top: 28px; }
.wh-features-title { font-size: 15px; }
.wh-card-features ul { gap: 14px; }
.wh-card-features li { font-size: 14px; line-height: 1.5; }

@media (min-width: 768px) {
  .wh-price-card { padding-inline: 34px; }

  .wh-card-head {
    margin-inline: -34px;
    padding-inline: 34px;
  }

  .wh-card-head::after { right: 34px; left: 34px; }
  .wh-card-head--featured::after { right: 0; left: 0; }
}

@media (min-width: 992px) {
  .wh-pricing { padding-top: 104px; }
  .wh-pricing-header h2 { font-size: 66px; }
  .wh-plans-row { margin-top: 62px; }

  .wh-plans-row > [class*="col-"] {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 410px) {
  .wh-price-card { padding-inline: 21px; }
  .wh-card-head { margin-inline: -21px; padding-inline: 21px; }
  .wh-card-head::after { right: 21px; left: 21px; }
  .wh-card-head--featured::after { right: 0; left: 0; }
  .wh-price-integer { font-size: 64px; }
}

/* ============================================================
   DIFERENCIACIÓN DE PLANES
   El bloque inferior explica qué problema resuelve cada nivel.
============================================================ */
.wh-card-features {
  position: relative;
  flex: 1;
  margin-top: 28px;
  padding: 22px 20px 23px;
  border: 1px solid #dbe5f1;
  border-radius: 17px;
  background: linear-gradient(145deg, #f8fbff 0%, #fff 72%);
}

.wh-card-features--upgrade {
  border-color: #b9d2fa;
  background:
    radial-gradient(circle at 100% 0, rgba(52, 120, 246, 0.11), transparent 38%),
    linear-gradient(145deg, #edf5ff 0%, #fff 74%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.wh-card-features--scale {
  border-color: #cbd9eb;
  background:
    radial-gradient(circle at 100% 0, rgba(16, 46, 92, 0.08), transparent 40%),
    linear-gradient(145deg, #f3f7fc 0%, #fff 74%);
}

.wh-features-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dce6f2;
}

.wh-features-heading > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.wh-features-heading__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 13px;
  background: #e5efff;
  color: var(--wh-blue);
  font-size: 16px;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.05);
}

.wh-card-features--upgrade .wh-features-heading__icon {
  background: linear-gradient(135deg, #3478f6, #2563eb);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
  color: #fff;
}

.wh-card-features--scale .wh-features-heading__icon {
  background: var(--wh-navy);
  color: #fff;
}

.wh-features-heading small {
  color: var(--wh-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.wh-features-heading strong {
  color: #17243a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.wh-feature-list {
  display: grid !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 8px 0 0 !important;
  list-style: none !important;
}

.wh-feature-list li {
  display: grid !important;
  min-height: 72px;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center !important;
  gap: 11px !important;
  padding: 12px 0;
  color: #26364b !important;
}

.wh-feature-list li:not(:last-child) {
  border-bottom: 1px solid #e6edf5;
}

.wh-feature-list li > i {
  display: grid;
  width: 27px;
  height: 27px;
  margin: 0 !important;
  place-items: center;
  border-radius: 50%;
  background: #e5efff;
  color: var(--wh-blue) !important;
  font-size: 10px !important;
}

.wh-card-features--base .wh-feature-list li > i {
  background: #e9f8ef;
  color: var(--wh-green) !important;
}

.wh-feature-list li > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.wh-feature-list strong {
  color: #1b2a40;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.wh-feature-list small {
  color: #64758b;
  font-size: 13px;
  line-height: 1.45;
}

.wh-resource-detail {
  display: block;
  color: #52657d !important;
  font-size: 12.5px !important;
  font-weight: 600;
  line-height: 1.4 !important;
}

/* Multiplicadores presentados como una ventaja clara y discreta. */
.wh-feature-list .wh-capacity-summary {
  min-height: 76px;
  margin: 3px 0;
  padding: 13px 12px;
  border: 1px solid #cfdef2 !important;
  border-radius: 13px;
  background: linear-gradient(135deg, #f3f7ff, #fbfdff);
}

.wh-feature-list .wh-capacity-summary > i {
  background: #dceaff;
  color: var(--wh-blue) !important;
}

/* Multiplicador de capacidad: convierte una cifra técnica en una
   diferencia visual fácil de comprender y recordar. */
.wh-feature-list .wh-capacity-highlight {
  min-height: 92px;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px !important;
  margin: 8px -8px 2px;
  padding: 15px 13px;
  border: 1px solid #c9dcfa !important;
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0, rgba(52, 120, 246, 0.12), transparent 42%),
    linear-gradient(145deg, #edf5ff, #f9fbff);
}

.wh-capacity-highlight--scale {
  border-color: #c7d6e8 !important;
  background:
    radial-gradient(circle at 100% 0, rgba(16, 46, 92, 0.11), transparent 42%),
    linear-gradient(145deg, #edf3fa, #f9fbfd) !important;
}

.wh-capacity-badge {
  display: grid !important;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #3478f6, #2563eb);
  box-shadow: 0 9px 20px rgba(37, 99, 235, 0.22);
  color: #fff;
  font-family: "Open Sans Condensed", "Open Sans", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.wh-capacity-highlight--scale .wh-capacity-badge {
  background: linear-gradient(135deg, #173f74, #102e5c);
  box-shadow: 0 9px 20px rgba(16, 46, 92, 0.22);
}

.wh-capacity-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.wh-capacity-copy strong {
  font-size: 14px;
}

.wh-capacity-copy small {
  line-height: 1.4;
}

.wh-capacity-bars {
  display: flex !important;
  width: 100%;
  align-items: center;
  gap: 4px !important;
  margin-top: 7px;
}

.wh-capacity-bars i {
  display: block !important;
  width: auto !important;
  height: 6px !important;
  flex: 1;
  margin: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #4a8bfa, #2563eb) !important;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.18);
}

.wh-capacity-highlight--scale .wh-capacity-bars i {
  background: linear-gradient(90deg, #3478f6, #173f74) !important;
}

/* Medidor comercial de rendimiento: compara niveles sin exponer
   CPU o memoria, datos demasiado técnicos para la decisión inicial. */
.wh-performance-meter {
  display: grid !important;
  width: 100%;
  grid-template-columns: repeat(3, minmax(22px, 1fr)) auto;
  align-items: center;
  gap: 5px !important;
  margin-top: 5px;
}

.wh-performance-meter > i {
  display: block !important;
  width: auto !important;
  height: 7px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: #dbe5f1 !important;
  box-shadow: inset 0 1px 2px rgba(15, 36, 70, 0.08);
}

.wh-performance-meter > i.is-active {
  background: linear-gradient(90deg, #3478f6, #2563eb) !important;
  box-shadow: 0 2px 7px rgba(37, 99, 235, 0.2);
}

.wh-card-features--base .wh-performance-meter > i.is-active {
  background: linear-gradient(90deg, #4c8cff, #3478f6) !important;
}

.wh-card-features--scale .wh-performance-meter > i.is-active {
  background: linear-gradient(90deg, #173f74, #2563eb) !important;
}

.wh-performance-meter > small {
  min-width: 72px;
  color: #51647c;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

/* ============================================================
   BENEFICIOS COMUNES
   Una sola presentación evita repetir contenido en cada tarjeta.
============================================================ */
.wh-all-plans {
  overflow: hidden;
  margin-top: 44px;
  border: 1px solid #cbd9e9;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(15, 36, 70, 0.07);
}

.wh-all-plans__header {
  padding: 28px 25px 26px;
  background: linear-gradient(135deg, var(--wh-navy-deep), #173f74);
  text-align: left;
}

.wh-all-plans__header > span {
  display: block;
  margin-bottom: 8px;
  color: #8fbdff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.wh-all-plans__header h3 {
  margin: 0;
  color: #fff;
  font-family: "Open Sans Condensed", "Open Sans", Arial, sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.1;
}

.wh-all-plans__header p {
  max-width: 480px;
  margin: 9px 0 0;
  color: #cfdded;
  font-size: 13px;
  line-height: 1.5;
}

.wh-all-plans__grid {
  display: grid;
  grid-template-columns: 1fr;
  padding: 8px 22px;
}

.wh-all-plans__item {
  display: flex;
  min-height: 91px;
  align-items: center;
  gap: 14px;
  padding: 17px 3px;
}

.wh-all-plans__item:not(:last-child) {
  border-bottom: 1px solid #e1e9f2;
}

.wh-all-plans__item > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.wh-all-plans__icon {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  border-radius: 13px;
  background: var(--wh-blue-soft);
  color: var(--wh-blue);
  font-size: 16px;
}

.wh-all-plans__item--ai .wh-all-plans__icon {
  background: var(--wh-violet-soft);
  color: var(--wh-violet);
}

.wh-all-plans__item strong {
  color: #213149;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.wh-all-plans__item small {
  color: #66788f;
  font-size: 11.5px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .wh-all-plans__header {
    padding: 31px 34px 29px;
    text-align: center;
  }

  .wh-all-plans__header p { margin-inline: auto; }

  .wh-all-plans__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px 30px;
  }

  .wh-all-plans__item {
    min-height: 96px;
    padding: 18px 20px;
  }

  .wh-all-plans__item:nth-child(odd) {
    border-right: 1px solid #e1e9f2;
  }

  .wh-all-plans__item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .wh-all-plans {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
  }

  .wh-all-plans__header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 32px;
    text-align: left;
  }

  .wh-all-plans__header p { margin-inline: 0; }

  .wh-all-plans__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 12px 19px;
  }

  .wh-all-plans__item {
    min-height: 104px;
    padding: 18px 20px;
  }

  .wh-all-plans__item:nth-child(odd) { border-right: 0; }

  .wh-all-plans__item:not(:nth-child(3n)) {
    border-right: 1px solid #e1e9f2;
  }

  .wh-all-plans__item:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 410px) {
  .wh-card-features { padding-inline: 16px; }
  .wh-features-heading__icon { width: 40px; height: 40px; flex-basis: 40px; }
  .wh-feature-list strong { font-size: 14px; }
  .wh-feature-list small { font-size: 12.5px; }
  .wh-feature-list .wh-capacity-highlight {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 11px !important;
    margin-inline: -7px;
    padding-inline: 10px;
  }
  .wh-capacity-badge { width: 48px; height: 48px; font-size: 22px; }
  .wh-performance-meter { grid-template-columns: repeat(3, minmax(18px, 1fr)); }
  .wh-performance-meter > small {
    grid-column: 1 / -1;
    margin-top: 2px;
    text-align: left;
  }
}

/* ============================================================
   ALTURAS UNIFORMES EN ESCRITORIO

   El proyecto conserva reglas heredadas de Bootstrap que añaden
   pseudoelementos a .row. Por eso no se convierte la fila en Grid:
   se utiliza Flexbox y se anulan esos pseudoelementos únicamente
   dentro del componente de precios.
============================================================ */
@media (min-width: 992px) {
  .wh-pricing .wh-plans-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 28px;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  /* Evita que clearfix heredados se comporten como columnas. */
  .wh-pricing .wh-plans-row::before,
  .wh-pricing .wh-plans-row::after {
    display: none !important;
    content: none !important;
  }

  .wh-pricing .wh-plans-row > [class*="col-"] {
    display: flex !important;
    float: none !important;
    width: 0 !important;
    max-width: none !important;
    flex: 1 1 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .wh-pricing .wh-price-card,
  .wh-pricing .wh-price-card--featured {
    align-self: stretch !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0;
    flex: 1 1 auto !important;
    transform: none !important;
  }

  .wh-pricing .wh-price-card:hover,
  .wh-pricing .wh-price-card--featured:hover {
    transform: translateY(-4px) !important;
  }

  .wh-pricing .wh-card-features {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
  }

  .wh-pricing .wh-feature-list {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
  }
}

/* Movimiento reducido: elimina elevaciones animadas */
@media (prefers-reduced-motion: reduce) {
  .wh-pricing *,
  .wh-pricing *::before,
  .wh-pricing *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}