:root {
  --ns-bg: #f6fef9;
  --ns-bg-alt: #ecfdf3;
  --ns-bg-deep: #022c22;
  --ns-white: #ffffff;
  --ns-primary: #22c55e;
  --ns-primary-soft: #bbf7d0;
  --ns-primary-strong: #16a34a;
  --ns-primary-ghost: rgba(34, 197, 94, 0.08);
  --ns-border-soft: #d4e7dd;
  --ns-text: #062814;
  --ns-text-soft: #4b5563;
  --ns-radius-lg: 24px;
  --ns-radius: 16px;
  --ns-radius-sm: 10px;
  --ns-shadow-soft: 0 18px 45px rgba(15, 118, 110, 0.08);
  --ns-shadow-card: 0 16px 40px rgba(15, 118, 110, 0.12);
  --ns-shadow-elevated: 0 24px 60px rgba(6, 95, 70, 0.26);
  --ns-transition-fast: 0.18s ease-out;
  --ns-transition: 0.25s ease-out;
}

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

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, #bbf7d0 0, #f6fef9 40%, #f9fafb 100%);
  color: var(--ns-text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* Layout utilitário */

.ns-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ns-section {
  padding: 5rem 0;
}

.ns-section--alt {
  padding: 5rem 0;
  background: var(--ns-bg-alt);
}

.ns-section--pricing {
  padding: 5.5rem 0 6rem;
  background: radial-gradient(circle at top, #bbf7d0 0, #ecfdf3 45%, #f9fafb 100%);
}

.ns-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.ns-section__grid--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
}

.ns-section__header {
  max-width: 620px;
  text-align: center;
  margin: 0 auto 3rem;
}

.ns-section__header h2 {
  margin: 0.25rem 0 0.75rem;
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
}

.ns-section__header p {
  margin: 0;
  color: var(--ns-text-soft);
}

.ns-section__content h2 {
  margin: 0.25rem 0 0.75rem;
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
}

.ns-section__content p {
  margin: 0 0 1.25rem;
  color: var(--ns-text-soft);
}

.ns-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #047857;
}

.ns-section__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15);
}

.ns-section__visual {
  position: relative;
}

/* Header / Nav */

.ns-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(246, 254, 249, 0.96),
    rgba(246, 254, 249, 0.86),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.ns-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 1.5rem;
}

.ns-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.ns-logo__mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 0 0, #bbf7d0, #22c55e 40%, #15803d 100%);
  color: var(--ns-white);
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.45);
}

.ns-logo__text {
  font-size: 1.1rem;
}

.ns-logo--small .ns-logo__mark {
  width: 26px;
  height: 26px;
  font-size: 0.8rem;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.35);
}

.ns-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.92rem;
}

.ns-nav__link {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  color: var(--ns-text-soft);
  transition: color var(--ns-transition-fast), background var(--ns-transition-fast),
    transform var(--ns-transition-fast);
}

.ns-nav__link:hover {
  color: var(--ns-text);
  background: rgba(34, 197, 94, 0.07);
  transform: translateY(-1px);
}

.ns-header__actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.ns-header__price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.35);
  font-size: 0.75rem;
  color: #065f46;
}

.ns-header__menu-toggle {
  display: none;
  border: none;
  background: transparent;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}

.ns-header__menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #047857;
  transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease, bottom 0.18s ease;
}

.ns-header__menu-toggle span:first-child {
  top: 14px;
}

.ns-header__menu-toggle span:last-child {
  bottom: 14px;
}

.ns-header__menu-toggle.is-open span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.ns-header__menu-toggle.is-open span:last-child {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.ns-header__mobile-menu {
  display: none;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(246, 254, 249, 0.98);
}

.ns-header__mobile-menu.is-open {
  display: block;
}

.ns-header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.75rem 1.5rem 0.5rem;
}

.ns-header__mobile-nav .ns-nav__link {
  padding: 0.5rem 0.8rem;
}

.ns-header__mobile-cta {
  padding: 0.25rem 1.5rem 0.9rem;
}

/* Botões */

.ns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: background var(--ns-transition), color var(--ns-transition),
    box-shadow var(--ns-transition), transform var(--ns-transition);
  background: transparent;
}

.ns-btn--primary {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  box-shadow: 0 15px 35px rgba(22, 163, 74, 0.35);
  color: var(--ns-white);
}

.ns-btn--primary:hover {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 18px 42px rgba(22, 163, 74, 0.4);
  transform: translateY(-1px);
}

.ns-btn--ghost {
  border-color: rgba(15, 118, 110, 0.18);
  background: rgba(255, 255, 255, 0.8);
  color: #047857;
}

.ns-btn--ghost:hover {
  border-color: rgba(5, 150, 105, 0.4);
  background: rgba(240, 253, 250, 0.95);
  transform: translateY(-1px);
}

.ns-btn--lg {
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
}

.ns-btn--sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
}

.ns-btn--full {
  width: 100%;
}

/* HERO */

.ns-hero {
  padding: 4.2rem 0 4.8rem;
}

.ns-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.05fr);
  gap: 2.8rem;
  align-items: center;
}

.ns-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #064e3b;
  font-size: 0.78rem;
  font-weight: 500;
}

.ns-hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15);
}

.ns-hero h1 {
  margin: 0.9rem 0 0.9rem;
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.ns-hero__highlight {
  background: linear-gradient(135deg, #16a34a, #22c55e, #4ade80);
  -webkit-background-clip: text;
  color: transparent;
}

.ns-hero__subtitle {
  margin: 0 0 1.6rem;
  color: var(--ns-text-soft);
  max-width: 35rem;
}

.ns-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.ns-hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ns-hero__meta-item {
  padding: 0.7rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 40px rgba(15, 118, 110, 0.08);
}

.ns-hero__meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #16a34a;
}

.ns-hero__meta-value {
  display: block;
  font-size: 0.88rem;
  margin-top: 0.25rem;
}

.ns-hero__card {
  background: radial-gradient(circle at top left, #16a34a 0, #047857 40%, #022c22 100%);
  border-radius: var(--ns-radius-lg);
  padding: 1.5rem 1.6rem 1.5rem;
  color: var(--ns-white);
  box-shadow: var(--ns-shadow-elevated);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(187, 247, 208, 0.35);
}

.ns-hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.32), transparent 60%);
  opacity: 0.45;
  pointer-events: none;
}

.ns-hero-card__header,
.ns-hero-card__price,
.ns-hero-card__list,
.ns-hero-card__footnote,
.ns-hero-card__value,
.ns-hero-card__note {
  position: relative;
  z-index: 1;
}

.ns-hero-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ns-hero-card__label {
  font-size: 0.8rem;
  opacity: 0.9;
}

.ns-hero-card__chip {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(187, 247, 208, 0.95);
  background: rgba(22, 101, 52, 0.4);
  font-size: 0.7rem;
}

.ns-hero-card__price {
  margin-bottom: 0.6rem;
}

.ns-hero-card__from {
  display: inline-block;
  font-size: 0.8rem;
  opacity: 0.9;
}

.ns-hero-card__value {
  display: flex;
  align-items: baseline;
  gap: 0.13rem;
  margin-top: 0.15rem;
}

.ns-hero-card__currency {
  font-size: 0.9rem;
  opacity: 0.9;
}

.ns-hero-card__amount {
  font-size: 2rem;
  font-weight: 800;
}

.ns-hero-card__period {
  font-size: 0.9rem;
  opacity: 0.9;
}

.ns-hero-card__note {
  margin: 0.3rem 0 0.7rem;
  font-size: 0.85rem;
  opacity: 0.92;
}

.ns-hero-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  font-size: 0.85rem;
}

.ns-hero-card__list li + li {
  margin-top: 0.3rem;
}

.ns-hero-card__footnote {
  margin: 0.6rem 0 0;
  font-size: 0.77rem;
  opacity: 0.9;
}

/* Strip */

.ns-strip {
  padding: 1rem 0 1.3rem;
}

.ns-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(240, 253, 250, 0.96);
  border: 1px solid rgba(22, 163, 74, 0.25);
  box-shadow: 0 12px 35px rgba(22, 163, 74, 0.12);
}

.ns-strip__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #047857;
}

.ns-strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  font-size: 0.8rem;
  color: var(--ns-text-soft);
}

.ns-strip__items span {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
}

/* Listas */

.ns-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.ns-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  color: var(--ns-text-soft);
}

.ns-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #bbf7d0, #22c55e);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.ns-list--columns {
  columns: 2;
  column-gap: 1.7rem;
}

.ns-list--columns li {
  break-inside: avoid;
}

/* Mockups / cards visuais */

.ns-mockup {
  background: var(--ns-white);
  border-radius: var(--ns-radius-lg);
  padding: 1.1rem 1.2rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--ns-shadow-card);
}

.ns-mockup--primary {
  background: radial-gradient(circle at top left, #bbf7d0 0, #ecfdf3 40%, #ffffff 100%);
}

.ns-mockup--stats {
  background: linear-gradient(135deg, #022c22, #064e3b);
  color: var(--ns-white);
  box-shadow: var(--ns-shadow-elevated);
}

.ns-mockup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.ns-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  background: rgba(240, 253, 244, 0.92);
  color: #166534;
}

.ns-mockup--stats .ns-pill {
  background: rgba(22, 163, 74, 0.22);
  color: #bbf7d0;
}

.ns-mockup__dots {
  width: 36px;
  height: 10px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    rgba(148, 163, 184, 0.6),
    rgba(148, 163, 184, 0.6) 6px,
    transparent 6px,
    transparent 9px
  );
}

.ns-mockup__body {
  margin-bottom: 0.8rem;
}

.ns-mockup__body--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.ns-mockup__body--stats {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.ns-mockup__footer {
  font-size: 0.8rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ns-mockup--stats .ns-mockup__footer {
  color: rgba(226, 232, 240, 0.95);
}

.ns-mockup__ticket {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px dashed rgba(22, 163, 74, 0.4);
}

.ns-mockup__ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.86rem;
  color: var(--ns-text-soft);
}

.ns-mockup__ticket-row strong {
  color: var(--ns-text);
}

.ns-mockup__ticket-row + .ns-mockup__ticket-row {
  margin-top: 0.3rem;
}

.ns-mockup__divider {
  margin: 0.6rem 0;
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
}

.ns-mockup__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.25rem;
}

.ns-mockup__tags span {
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  font-size: 0.75rem;
}

.ns-card-mini {
  padding: 0.7rem 0.7rem;
  border-radius: 14px;
  background: rgba(240, 253, 250, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.8rem;
}

.ns-card-mini__tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #047857;
}

.ns-card-mini strong {
  display: block;
  margin-top: 0.25rem;
}

.ns-card-mini span:last-child {
  display: block;
  color: var(--ns-text-soft);
  margin-top: 0.15rem;
}

.ns-grid {
  display: grid;
  gap: 1.4rem;
}

.ns-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ns-feature-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--ns-radius);
  padding: 1.1rem 1.1rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--ns-shadow-soft);
  font-size: 0.9rem;
}

.ns-feature-card--highlight {
  border-color: rgba(34, 197, 94, 0.7);
  box-shadow: 0 20px 60px rgba(22, 163, 74, 0.25);
  background: linear-gradient(135deg, #f0fdf4, #e0fbea);
}

.ns-feature-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 163, 74, 0.08);
  margin-bottom: 0.5rem;
}

.ns-feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.ns-feature-card ul {
  padding-left: 1rem;
  margin: 0.4rem 0 0;
  color: var(--ns-text-soft);
}

.ns-feature-card ul li + li {
  margin-top: 0.3rem;
}

/* Stats */

.ns-stat {
  padding: 0.7rem 0.7rem 0.65rem;
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.7);
  border: 1px solid rgba(45, 212, 191, 0.4);
}

.ns-stat--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.ns-stat__label {
  font-size: 0.77rem;
  color: rgba(226, 232, 240, 0.85);
}

.ns-stat__value {
  display: block;
  font-size: 0.96rem;
  margin-top: 0.15rem;
}

.ns-stat__tag {
  display: inline-flex;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.4);
  font-size: 0.75rem;
  margin-top: 0.3rem;
}

.ns-stat__tag--up {
  background: rgba(22, 163, 74, 0.35);
}

/* Claims */

.ns-section--claims {
  padding: 4rem 0 4.4rem;
}

.ns-claims-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.9rem;
}

.ns-claim {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(240, 253, 250, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.9rem;
  position: relative;
}

.ns-claim::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  left: 0.7rem;
  font-size: 1.8rem;
  color: rgba(22, 163, 74, 0.22);
}

.ns-claim {
  padding-left: 1.6rem;
}

/* Pricing */

.ns-pricing {
  display: flex;
  justify-content: center;
}

.ns-pricing__card {
  max-width: 440px;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 28px;
  padding: 1.7rem 1.6rem 1.4rem;
  border: 1px solid rgba(34, 197, 94, 0.35);
  box-shadow: 0 24px 70px rgba(22, 163, 74, 0.32);
}

.ns-pricing__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: #022c22;
  color: #bbf7d0;
}

.ns-pricing__card h3 {
  margin: 0.8rem 0 0.3rem;
}

.ns-pricing__subtitle {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--ns-text-soft);
}

.ns-pricing__value {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.3rem;
}

.ns-pricing__currency {
  font-size: 1rem;
  color: #047857;
}

.ns-pricing__amount {
  font-size: 2.45rem;
  font-weight: 800;
}

.ns-pricing__period {
  font-size: 0.9rem;
  color: var(--ns-text-soft);
}

.ns-pricing__list {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 1.1rem;
  font-size: 0.9rem;
  color: var(--ns-text-soft);
}

.ns-pricing__list li {
  position: relative;
  padding-left: 1.3rem;
}

.ns-pricing__list li + li {
  margin-top: 0.35rem;
}

.ns-pricing__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: #16a34a;
  font-weight: 700;
}

.ns-pricing__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.ns-pricing__footnote {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ns-text-soft);
}

/* FAQ & Contato */

.ns-faq {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ns-faq__item {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.65rem 0.9rem;
}

.ns-faq__item[open] {
  border-color: rgba(34, 197, 94, 0.6);
  box-shadow: 0 15px 40px rgba(22, 163, 74, 0.18);
}

.ns-faq__item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.ns-faq__item summary::-webkit-details-marker {
  display: none;
}

.ns-faq__item p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--ns-text-soft);
}

.ns-contact {
  border-radius: 24px;
  padding: 1.3rem 1.3rem 1.1rem;
  background: radial-gradient(circle at top left, #bbf7d0 0, #ecfdf3 38%, #ffffff 100%);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--ns-shadow-card);
}

.ns-contact h3 {
  margin: 0 0 0.4rem;
}

.ns-contact p {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: var(--ns-text-soft);
}

.ns-contact__form {
  display: flex;
  flex-direction: column;
  gap: 0.66rem;
}

.ns-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.ns-field label {
  font-weight: 500;
  color: #064e3b;
}

.ns-field input,
.ns-field select,
.ns-field textarea {
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.96);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--ns-transition-fast),
    box-shadow var(--ns-transition-fast), background var(--ns-transition-fast);
}

.ns-field input:focus,
.ns-field select:focus,
.ns-field textarea:focus {
  border-color: rgba(34, 197, 94, 0.9);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.55),
    0 0 0 8px rgba(74, 222, 128, 0.2);
  background: var(--ns-white);
}

.ns-contact__hint {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  color: var(--ns-text-soft);
}

/* Footer */

.ns-footer {
  padding: 2.3rem 0 2.1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: #022c22;
  color: rgba(226, 232, 240, 0.9);
}

.ns-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem 1.8rem;
  font-size: 0.85rem;
}

.ns-footer__info {
  max-width: 320px;
}

.ns-footer__info p {
  margin: 0.4rem 0 0;
  color: rgba(226, 232, 240, 0.8);
}

.ns-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.ns-footer__links a {
  color: rgba(226, 232, 240, 0.9);
}

.ns-footer__links a:hover {
  text-decoration: underline;
}

.ns-footer__copy {
  color: rgba(148, 163, 184, 0.9);
}

/* Scroll animations */

[data-animate] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

[data-animate="fade-left"] {
  transform: translateX(14px);
}

[data-animate="fade-right"] {
  transform: translateX(-14px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Responsivo */

@media (max-width: 1024px) {
  .ns-hero__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  }

  .ns-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ns-claims-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .ns-header__inner {
    padding-inline: 1.1rem;
  }

  .ns-nav,
  .ns-header__actions {
    display: none;
  }

  .ns-header__menu-toggle {
    display: inline-flex;
  }

  .ns-hero {
    padding-top: 3.3rem;
  }

  .ns-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ns-hero__card {
    order: -1;
  }

  .ns-hero__meta {
    grid-template-columns: minmax(0, 1fr);
  }

  .ns-strip__inner {
    border-radius: 20px;
  }

  .ns-section__grid,
  .ns-section__grid--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .ns-section__visual {
    order: -1;
  }

  .ns-list--columns {
    columns: 1;
  }

  .ns-grid--3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .ns-claims-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .ns-container {
    padding-inline: 1.1rem;
  }

  .ns-hero h1 {
    font-size: 1.9rem;
  }

  .ns-hero__subtitle {
    font-size: 0.95rem;
  }

  .ns-strip {
    padding-inline: 0.5rem;
  }

  .ns-strip__inner {
    align-items: flex-start;
  }

  .ns-strip__label {
    margin-bottom: 0.2rem;
  }

  .ns-section {
    padding-block: 3.5rem;
  }

  .ns-section--alt {
    padding-block: 3.4rem;
  }
}


