/* ==========================================================================
   ip-movel.css — IP Móvel Landing Page (data-product="ip-movel")
   Internet Móvel com IP Fixo: CPE LTE + Roteador gerenciável + /32 dedicado.
   Usa tokens globais (tokens.css). Componentes scoped: .nt-ip-movel-*
   ========================================================================== */

/* ── HERO ────────────────────────────────────────────────────────────────── */
.nt-hero--ip-movel {
  position: relative;
  overflow: hidden;
  padding: var(--space-20) 0 var(--space-16);
  border-bottom: none;
}
.nt-hero--ip-movel .nt-container { position: relative; z-index: 1; }
.nt-hero--ip-movel__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--space-12);
}
.nt-hero--ip-movel__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  margin: var(--space-4) 0 var(--space-5);
  color: var(--text-1);
}
.nt-hero--ip-movel__title em {
  font-style: normal;
  color: var(--accent-on-light);
}
.nt-hero--ip-movel__sub {
  font-size: var(--text-lg);
  color: var(--text-2);
  line-height: var(--lh-body);
  max-width: 52ch;
  margin: 0 0 var(--space-8);
}
.nt-hero--ip-movel__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.nt-hero--ip-movel__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.nt-hero--ip-movel__trust-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
}
.nt-hero--ip-movel__trust-item svg { color: var(--accent-on-light); flex-shrink: 0; }

/* Hero visual: imagem ilustrativa topologia + badge IP /32 sobreposto */
.nt-hero--ip-movel__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  min-height: 240px;
}
.nt-hero--ip-movel__photo {
  width: 100%;
  height: 100%;
  max-width: 720px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.nt-hero--ip-movel__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(217, 51, 56, 0.45);
  z-index: 2;
}

/* ── HERO CAROUSEL ───────────────────────────────────────────────────────── */
.nt-ipm-carousel { position: relative; }
.nt-ipm-carousel__track { position: relative; width: 100%; height: 100%; }
.nt-ipm-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.nt-ipm-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .nt-ipm-slide { transition: none; }
}
.nt-ipm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(10, 20, 36, 0.55);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
}
.nt-ipm-arrow--prev { left: 8px; }
.nt-ipm-arrow--next { right: 8px; }
.nt-ipm-arrow:hover { background: rgba(10, 20, 36, 0.8); }
.nt-ipm-arrow:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.nt-ipm-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 7px;
}
.nt-ipm-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.2s ease, background 0.2s ease;
}
.nt-ipm-dot.is-active { background: #fff; width: 20px; border-radius: 4px; }
.nt-ipm-dot:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* ── PILLARS ─────────────────────────────────────────────────────────────── */
.nt-ip-movel-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.nt-ip-movel-pillar {
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}
.nt-ip-movel-pillar:hover {
  transform: translateY(-2px);
  border-color: var(--accent-border);
}
.nt-ip-movel-pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  color: var(--accent-on-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
}
.nt-ip-movel-pillar__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-1);
  margin: 0 0 var(--space-2);
}
.nt-ip-movel-pillar__desc {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: var(--lh-body);
  margin: 0;
}

/* ── SERVIÇO + ADICIONAIS (BOX / CPE) ────────────────────────────────────── */
.nt-ip-movel-addons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: stretch;
}
.nt-ip-movel-addon {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.nt-ip-movel-addon--service {
  background: var(--accent-soft);
  border-color: var(--accent-border, rgba(217, 51, 56, 0.25));
}
.nt-ip-movel-addon--recommended {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 6px 24px rgba(217, 51, 56, 0.08);
}
.nt-ip-movel-addon__tier {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  background: var(--accent-soft);
  color: var(--accent-on-light);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
}
.nt-ip-movel-addon--service .nt-ip-movel-addon__tier {
  background: rgba(255, 255, 255, 0.7);
}
.nt-ip-movel-addon--recommended .nt-ip-movel-addon__tier {
  background: var(--accent);
  color: #fff;
}
.nt-ip-movel-addon__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-1);
  margin: 0 0 var(--space-2);
}
.nt-ip-movel-addon__tagline {
  font-size: var(--text-sm);
  color: var(--text-2);
  margin: 0 0 var(--space-5);
  line-height: var(--lh-body);
}
/* badge de entrega / instalação */
.nt-ip-movel-addon__delivery {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  margin: 0 0 var(--space-5);
  border-radius: var(--radius-md);
  background: var(--surface-2, rgba(0, 0, 0, 0.03));
  border: 1px solid var(--border);
}
.nt-ip-movel-addon__delivery svg { flex-shrink: 0; color: var(--accent-on-light); }
.nt-ip-movel-addon__delivery--visita svg { color: var(--accent); }
.nt-ip-movel-addon__delivery-text { display: flex; flex-direction: column; line-height: 1.3; }
.nt-ip-movel-addon__delivery-text strong { font-size: var(--text-sm); color: var(--text-1); }
.nt-ip-movel-addon__delivery-text span { font-size: var(--text-xs); color: var(--text-2); }
/* lista de features — cresce p/ alinhar preço + CTA ao rodapé do card */
.nt-ip-movel-addon__features {
  flex: 1 1 auto;
  align-content: start;
  list-style: none;
  margin: 0 0 var(--space-5);
  padding: var(--space-4) 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  gap: var(--space-2);
}
.nt-ip-movel-addon--service .nt-ip-movel-addon__features { border-top-color: rgba(0, 0, 0, 0.08); }
.nt-ip-movel-addon__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-1);
  line-height: var(--lh-body);
}
.nt-ip-movel-addon__features svg { flex-shrink: 0; margin-top: 4px; color: var(--accent-on-light); }
/* nota (antena não vendida sozinha) */
.nt-ip-movel-addon__note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-2);
  line-height: var(--lh-body);
  margin: 0 0 var(--space-5);
}
.nt-ip-movel-addon__note svg { flex-shrink: 0; margin-top: 2px; color: var(--accent-on-light); }
/* preço dinâmico (vem de $nt_prices[pid]) */
.nt-ip-movel-addon__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin: 0 0 var(--space-4);
}
.nt-ip-movel-addon__price-label { font-size: var(--text-xs); color: var(--text-3); }
.nt-ip-movel-addon__price-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-1);
}
/* CTA ocupa a largura do card */
.nt-ip-movel-addon__cta { width: 100%; justify-content: center; }

/* ── TOPOLOGY (5 nodes + arrows) ─────────────────────────────────────────── */
.nt-ip-movel-topology {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding: var(--space-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.nt-ip-movel-topology__node {
  flex: 1 1 140px;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  padding: var(--space-4);
}
.nt-ip-movel-topology__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--accent-soft);
  color: var(--accent-on-light);
  border-radius: 50%;
}
.nt-ip-movel-topology__title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-1);
}
.nt-ip-movel-topology__caption {
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nt-ip-movel-topology__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  flex: 0 0 24px;
}
.nt-ip-movel-topology__note {
  margin: var(--space-6) 0 0;
  padding: var(--space-4) var(--space-5);
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: var(--lh-body);
}
.nt-ip-movel-topology__note strong { color: var(--accent-on-light); }

/* ── PLANS TABLE (6 colunas desktop: offer=Preço, cta=Ação — irmãos no grid) ─ */
#planos .nt-plan-cycle-section > .nt-cycle-toggle {
  margin-bottom: var(--space-4);
}

.nt-ip-movel-plans {
  display: grid;
  gap: var(--space-2);
  max-width: 960px;
  margin-inline: auto;
}
.nt-ip-movel-plans__head {
  display: grid;
  grid-template-columns: 1.25fr 0.72fr 0.72fr 0.88fr 1.1fr 0.82fr;
  gap: var(--space-2) var(--space-3);
  padding: 0 var(--space-4) var(--space-2);
  margin-bottom: var(--space-1);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nt-ip-movel-plans__head > :nth-child(n+2):nth-child(-n+4) {
  text-align: center;
}
.nt-ip-movel-plans__head > :nth-child(5) {
  text-align: right;
}
.nt-ip-movel-plans__head > :last-child {
  text-align: center;
}
.nt-ip-movel-plan {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.72fr 0.72fr 0.88fr 1.1fr 0.82fr;
  gap: var(--space-2) var(--space-3);
  align-items: center;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}
.nt-ip-movel-plan:hover {
  border-color: var(--accent-border);
  box-shadow: 0 2px 10px rgba(13, 117, 133, 0.07);
}
.nt-ip-movel-plan--popular {
  border-color: var(--accent-border);
  border-left: 3px solid var(--accent);
  background: var(--surface);
  box-shadow: 0 2px 12px rgba(13, 117, 133, 0.1);
}
.nt-ip-movel-plan__badge {
  position: absolute;
  top: -8px;
  left: var(--space-4);
  padding: 2px 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
}
.nt-ip-movel-plan__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-1);
  text-transform: uppercase;
  line-height: 1.15;
}
.nt-ip-movel-plan__metric {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  text-align: center;
}
.nt-ip-movel-plan__metric-label {
  display: none;
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nt-ip-movel-plan__metric-value {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.2;
}
.nt-ip-movel-plan__offer {
  justify-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  min-width: 0;
  text-align: right;
}
.nt-ip-movel-plan__cta {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nt-ip-movel-plan__cta .nt-btn {
  width: 100%;
  max-width: 112px;
  justify-content: center;
  white-space: nowrap;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-xs);
  min-height: 34px;
}

.nt-ip-movel-perks {
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: var(--space-4) 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3) var(--space-6);
}
.nt-ip-movel-perks li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2);
}
.nt-ip-movel-perks svg { color: var(--accent-on-light); flex-shrink: 0; }

/* ── STEPS ───────────────────────────────────────────────────────────────── */
.nt-ip-movel-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.nt-ip-movel-step { text-align: center; }
.nt-ip-movel-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  background: var(--accent-soft);
  color: var(--accent-on-light);
  font-family: var(--font-mono);
  font-size: var(--text-xl);
  font-weight: 700;
  border-radius: 50%;
}
.nt-ip-movel-step__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-1);
  margin: 0 0 var(--space-2);
}
.nt-ip-movel-step__desc {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: var(--lh-body);
  margin: 0;
}
.nt-ip-movel-steps__note {
  margin: var(--space-10) auto 0;
  max-width: 60ch;
  padding: var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-3);
  text-align: center;
  line-height: var(--lh-body);
  border-top: 1px solid var(--border);
}
.nt-ip-movel-steps__note strong { color: var(--text-1); }

/* ── USE CASES ───────────────────────────────────────────────────────────── */
.nt-ip-movel-usecases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.nt-ip-movel-usecase {
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.nt-ip-movel-usecase__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  color: var(--accent-on-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
}
.nt-ip-movel-usecase__title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--text-1);
  margin: 0 0 var(--space-2);
}
.nt-ip-movel-usecase__desc {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: var(--lh-body);
  margin: 0;
}

/* ── VANTAGENS GRID ──────────────────────────────────────────────────────── */
.nt-ip-movel-vantagens {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4) var(--space-6);
}
.nt-ip-movel-vantagens li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--text-1);
}
.nt-ip-movel-vantagens svg { color: var(--accent-on-light); flex-shrink: 0; }

/* ── WHATSAPP CTA (WCAG AA-safe #0a6b5f, 6.40:1) ─────────────────────────── */
.nt-btn--whatsapp {
  background: #0a6b5f;
  color: #fff;
  border-color: #0a6b5f;
}
.nt-btn--whatsapp:hover,
.nt-btn--whatsapp:focus-visible {
  background: #075048;
  border-color: #075048;
  color: #fff;
}
.nt-btn--whatsapp svg { color: #fff; }

/* ── CTA FINAL ───────────────────────────────────────────────────────────── */
.nt-ip-movel-cta-phone {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent-on-light);
  margin: var(--space-2) 0 var(--space-6);
  letter-spacing: 0.02em;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nt-ip-movel-pillars,
  .nt-ip-movel-usecases { grid-template-columns: repeat(2, 1fr); }
  .nt-ip-movel-steps { grid-template-columns: repeat(2, 1fr); }
  .nt-ip-movel-vantagens { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nt-hero--ip-movel__grid { grid-template-columns: 1fr; }
  .nt-hero--ip-movel__visual { order: -1; width: 100%; max-width: 480px; min-height: 190px; margin: 0 auto; }
  .nt-ip-movel-addons { grid-template-columns: 1fr; }
  .nt-ip-movel-plans__head { display: none; }
  .nt-ip-movel-plan {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2) var(--space-3);
    padding: var(--space-3) var(--space-4);
    max-width: none;
  }
  .nt-ip-movel-plan__name { grid-column: 1 / -1; }
  .nt-ip-movel-plan__metric {
    align-items: flex-start;
    text-align: left;
  }
  .nt-ip-movel-plan__metric-label { display: inline-block; }
  .nt-ip-movel-plan__offer {
    grid-column: 1 / -1;
    align-items: stretch;
    text-align: left;
  }
  .nt-ip-movel-plan__offer .nt-plan-price__state--annual {
    align-items: flex-start;
  }
  .nt-ip-movel-plan__offer .nt-ip-movel-plan__price-block {
    align-items: flex-start;
  }
  .nt-ip-movel-plan__cta {
    grid-column: 1 / -1;
    justify-content: stretch;
  }
  .nt-ip-movel-plan__cta .nt-btn { max-width: none; }
  .nt-ip-movel-plan--popular { background: var(--accent-soft); }
}
@media (max-width: 640px) {
  .nt-ip-movel-pillars,
  .nt-ip-movel-usecases,
  .nt-ip-movel-steps,
  .nt-ip-movel-vantagens { grid-template-columns: 1fr; }
  .nt-ip-movel-topology { padding: var(--space-4); }
  .nt-ip-movel-topology__arrow { transform: rotate(90deg); flex: 1 1 100%; }
  .nt-ip-movel-topology__node { flex: 1 1 100%; }
}

/* ===== Inline-style replacements (Codex P1, 2026-05-14) ===== */
.nt-ip-movel-section-header--gap-lg { margin-bottom: 48px; }
.nt-ip-movel-section-header--gap-md { margin-bottom: 40px; }
.nt-ip-movel-final-cta { text-align: center; }
.nt-ip-movel-final-cta .nt-label-mono { justify-content: center; }
.nt-ip-movel-final-cta__title { margin-top: 14px; }
.nt-ip-movel-final-cta__lead { margin: 14px auto 32px; max-width: 52ch; }
.nt-ip-movel-final-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Price block — wired 2026-05-25 */
.nt-ip-movel-plan__price-block {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  margin: 0;
  padding: var(--space-1) var(--space-2);
  background: transparent;
  border-radius: 0;
}

.nt-ip-movel-plan__price-label {
  font-size: var(--text-2xs);
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.nt-ip-movel-plan__price-value {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--accent-on-light);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

/* Toggle anual dentro da coluna Preço */
.nt-ip-movel-plan__offer .nt-plan-price {
  width: 100%;
}

.nt-ip-movel-plan__offer .nt-plan-price__states {
  min-height: 2.5rem;
}

.nt-ip-movel-plan__offer .nt-plan-price__state--annual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.nt-ip-movel-plan__offer .nt-plan-price__amount {
  font-size: var(--text-lg);
}

.nt-ip-movel-plan__offer .nt-plan-price__note {
  font-size: var(--text-2xs);
  margin-top: 0;
  line-height: 1.2;
  max-width: 14ch;
}

.nt-ip-movel-plan__offer .nt-plan-price__was {
  font-size: var(--text-xs);
  margin-bottom: 0;
}

/* Fallback legado: features WHMCS não devem aparecer na linha (perks abaixo) */
.nt-ip-movel-plan__offer .nt-card-plan__features--rich {
  display: none;
}
