:root {
  --nf-navy: #1a234e;
  --nf-navy-soft: #2a3568;
  --nf-navy-deep: #1e1f4d;
  --nf-teal: #0d9488;
  --nf-teal-light: #14b8a6;
  --nf-teal-glow: rgba(13, 148, 136, 0.35);
  --nf-sky: #34a8e0;
  --nf-bg: #f4f7fb;
  --nf-surface: #ffffff;
  --nf-text: #0f172a;
  --nf-muted: #64748b;
  --nf-border: rgba(148, 163, 184, 0.28);
  --nf-radius: 20px;
  --nf-radius-lg: 28px;
  --nf-shadow: 0 24px 60px rgba(26, 35, 78, 0.14);
  --nf-shadow-soft: 0 10px 30px rgba(26, 35, 78, 0.08);
  --nf-max: 1180px;
  --nf-font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--nf-font);
  color: var(--nf-text);
  background: var(--nf-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.nf-wrap {
  width: min(100% - 40px, var(--nf-max));
  margin-inline: auto;
}

/* ── Header ── */
.nf-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--nf-border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(1.4);
}

.nf-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.nf-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  line-height: 0;
}

.nf-brand img {
  height: 40px;
  width: auto;
  border-radius: 18px;
}

.nf-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nf-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--nf-border);
  border-radius: 12px;
  background: var(--nf-surface);
  color: var(--nf-navy);
  font-size: 1.35rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nf-menu-toggle:hover {
  background: var(--nf-bg);
  border-color: rgba(148, 163, 184, 0.5);
}

.nf-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--nf-border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px) saturate(1.4);
}

.nf-mobile-nav[hidden] {
  display: none;
}

.nf-mobile-nav a {
  padding: 14px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--nf-navy);
  transition: background 0.2s ease;
}

.nf-mobile-nav a:hover {
  background: var(--nf-bg);
}

.nf-mobile-nav__cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--nf-navy) 0%, var(--nf-navy-soft) 100%) !important;
  color: #fff !important;
}

body.nf-menu-open {
  overflow: hidden;
}

.nf-nav {
  display: none;
  align-items: center;
  gap: 32px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--nf-muted);
}

.nf-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.nf-nav a:hover {
  color: var(--nf-navy);
}

.nf-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--nf-navy) 0%, var(--nf-navy-soft) 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(26, 35, 78, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nf-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(26, 35, 78, 0.32);
}

@media (min-width: 900px) {
  .nf-nav {
    display: flex;
  }

  .nf-menu-toggle {
    display: none;
  }

  .nf-mobile-nav {
    display: none !important;
  }
}

@media (max-width: 899px) {
  .nf-header__cta span {
    display: none;
  }

  .nf-header__cta {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
  }
}

/* ── Hero ── */
.nf-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 56px;
}

.nf-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 15% -5%, rgba(52, 168, 224, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 0%, rgba(13, 148, 136, 0.1), transparent 50%),
    linear-gradient(180deg, #eef4fb 0%, var(--nf-bg) 70%);
}

.nf-hero__grid {
  position: relative;
  display: grid;
  gap: 32px;
  align-items: center;
}

.nf-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 34rem;
}

.nf-hero__intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nf-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 5px 12px 5px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: var(--nf-teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nf-eyebrow i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--nf-navy);
  color: #fff;
  font-size: 0.78rem;
}

.nf-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--nf-navy-deep);
}

.nf-hero h1 em {
  font-style: normal;
  background: linear-gradient(115deg, var(--nf-teal-light) 0%, var(--nf-sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nf-hero__lead {
  margin: 0;
  max-width: 30rem;
  font-size: 1.05rem;
  color: var(--nf-muted);
  font-weight: 500;
  line-height: 1.55;
}

.nf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.nf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.94rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nf-btn i {
  font-size: 1.15rem;
}

.nf-btn--primary {
  background: linear-gradient(135deg, var(--nf-navy) 0%, #243056 70%, #2a4a6e 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(26, 35, 78, 0.2);
}

.nf-btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--nf-navy);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: none;
}

.nf-btn--light {
  background: #fff;
  color: var(--nf-navy);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
}

.nf-btn:hover {
  transform: translateY(-2px);
}

.nf-stats {
  display: none;
  align-items: center;
  gap: 0;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

@media (min-width: 600px) {
  .nf-stats {
    display: flex;
  }
}

.nf-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 18px 0 0;
  margin-right: 18px;
  border-right: 1px solid rgba(148, 163, 184, 0.35);
  text-align: left;
  background: transparent;
  box-shadow: none;
}

.nf-stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.nf-stat strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--nf-navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.nf-stat span {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--nf-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nf-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nf-store-row--hero {
  width: 100%;
  gap: 8px;
}

.nf-store-row--hero .nf-store-badge {
  flex: 1 1 130px;
  min-width: 0;
  padding: 8px 12px;
  gap: 8px;
  border-radius: 12px;
}

.nf-store-row--hero .nf-store-badge__icon {
  width: 20px;
  height: 20px;
}

.nf-store-row--hero .nf-store-badge__small {
  font-size: 0.56rem;
}

.nf-store-row--hero .nf-store-badge__big {
  font-size: 0.78rem;
  font-weight: 700;
}

.nf-store-row--download {
  width: 100%;
}

.nf-store-row--download .nf-store-badge {
  flex: 1 1 180px;
  min-width: 0;
}

.nf-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  padding: 13px 18px;
  border-radius: 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nf-store-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.32);
}

.nf-store-badge--ios {
  background: linear-gradient(145deg, #0b0f1a 0%, #1e293b 100%);
}

.nf-store-badge--android {
  background: linear-gradient(145deg, #0f172a 0%, #115e59 100%);
}

.nf-store-badge--outline {
  background: rgba(255, 255, 255, 0.55);
  color: var(--nf-navy);
  border: 1px solid rgba(148, 163, 184, 0.32);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.nf-store-badge--outline:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(148, 163, 184, 0.45);
  box-shadow: 0 8px 20px rgba(26, 35, 78, 0.07);
  transform: translateY(-1px);
}

.nf-store-badge--outline .nf-store-badge__small {
  opacity: 0.65;
  color: var(--nf-muted);
}

.nf-store-badge--outline.nf-store-badge--android .nf-store-badge__icon {
  color: var(--nf-teal);
}

.nf-store-badge__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}

.nf-store-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nf-store-badge__small {
  font-size: 0.65rem;
  opacity: 0.78;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.nf-store-badge__big {
  font-size: 1.05rem;
  font-weight: 800;
}

.nf-hero__foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.nf-hero__note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--nf-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}

.nf-hero__note i {
  color: var(--nf-teal);
  font-size: 0.92rem;
}

.nf-hero__stores {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nf-hero__stores-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

/* Phone mockup */
.nf-hero__visual {
  position: relative;
  justify-self: center;
  width: min(100%, 292px);
}

.nf-hero__glow {
  position: absolute;
  inset: 15% 0;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.2), transparent 68%);
  filter: blur(32px);
  z-index: 0;
}

.nf-phone {
  position: relative;
  z-index: 1;
}

.nf-phone__frame {
  padding: 9px;
  border-radius: 32px;
  background: linear-gradient(165deg, #fff 0%, #e2e8f0 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 48px rgba(26, 35, 78, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.nf-phone__screen {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 9 / 15.5;
}

.nf-phone__screen--app {
  display: flex;
  flex-direction: column;
  background: var(--nf-bg);
  color: var(--nf-text);
}

.nf-phone__navbar {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 12px;
  background: var(--nf-navy);
  color: #fff;
  font-size: 0.72rem;
}

.nf-phone__navbar-title {
  text-align: center;
  font-weight: 700;
  font-size: 0.68rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nf-phone__navbar-mark {
  justify-self: end;
  font-size: 1rem;
  opacity: 0.95;
}

.nf-phone__main {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.nf-phone__scroll {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.nf-phone__scroll-inner {
  padding: 6px 8px 4px;
  transform: translateY(-62px);
}

.nf-phone__block {
  margin-bottom: 6px;
  padding: 8px 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--nf-border);
  box-shadow: 0 2px 8px rgba(26, 35, 78, 0.05);
}

.nf-phone__label {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--nf-muted);
}

.nf-phone__empresa {
  margin: 3px 0 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--nf-navy);
  line-height: 1.2;
}

.nf-phone__dist {
  margin: 3px 0 0;
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--nf-teal);
}

.nf-phone__link {
  display: inline-block;
  margin-top: 5px;
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--nf-navy);
}

.nf-phone__veiculo {
  margin: 4px 0 0;
  padding-bottom: 4px;
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--nf-navy);
  border-bottom: 1px solid var(--nf-border);
}

.nf-phone__cal {
  padding: 4px 2px 0;
}

.nf-phone__cal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 6px;
}

.nf-phone__cal-nav {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: var(--nf-navy);
  font-size: 0.85rem;
  box-shadow: 0 2px 6px rgba(26, 35, 78, 0.06);
}

.nf-phone__cal-title {
  flex: 1;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--nf-navy);
}

.nf-phone__cal-sub {
  margin: 0 0 5px;
  font-size: 0.46rem;
  line-height: 1.35;
  text-align: center;
  color: var(--nf-muted);
}

.nf-phone__cal-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin-bottom: 8px;
  font-size: 0.48rem;
  font-weight: 600;
  color: var(--nf-muted);
}

.nf-phone__cal-legend span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nf-phone__pip {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  flex-shrink: 0;
}

.nf-phone__cal-legend .nf-phone__pip {
  width: 5px;
  height: 5px;
}

.nf-phone__pip--livre {
  background: linear-gradient(135deg, #4fc3f7, #34a8e0);
}

.nf-phone__pip--agendado {
  background: #4fc3f7;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.nf-phone__cal-wkhead {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 4px;
  font-size: 0.44rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #94a3b8;
  text-align: center;
}

.nf-phone__cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.nf-phone__day {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  border-radius: 7px;
  border: 1px solid transparent;
  background: #fff;
  box-shadow: 0 1px 3px rgba(26, 35, 78, 0.05);
}

.nf-phone__day-num {
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--nf-navy);
  line-height: 1;
}

.nf-phone__day--off {
  opacity: 0.32;
  background: transparent;
  box-shadow: none;
}

.nf-phone__day--off .nf-phone__day-num {
  color: #94a3b8;
}

.nf-phone__day .nf-phone__pip {
  margin-top: 2px;
}

.nf-phone__day--selected {
  background: var(--nf-navy) !important;
  border-color: var(--nf-navy);
  box-shadow: 0 2px 8px rgba(26, 35, 78, 0.22);
}

.nf-phone__day--selected .nf-phone__day-num {
  color: #fff;
}

.nf-phone__day--today {
  border-color: #4fc3f7;
  box-shadow: 0 0 0 1px rgba(79, 195, 247, 0.45);
}

.nf-phone__day-badge {
  position: absolute;
  top: 1px;
  right: 2px;
  display: grid;
  place-items: center;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #fff;
  color: #4fc3f7;
  font-size: 0.4rem;
  font-weight: 800;
  line-height: 1;
}

.nf-phone__panel {
  flex-shrink: 0;
  margin-top: auto;
  padding: 10px 10px 12px;
  border-top: 1px solid var(--nf-border);
  border-radius: 14px 14px 0 0;
  background: #fff;
  box-shadow: 0 -6px 18px rgba(26, 35, 78, 0.05);
}

.nf-phone__panel-title {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--nf-navy);
}

.nf-phone__panel-sub {
  margin: 0 0 10px;
  font-size: 0.56rem;
  color: var(--nf-muted);
  line-height: 1.35;
}

.nf-phone__panel-btn {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--nf-navy);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 6px 18px rgba(26, 35, 78, 0.22);
}

@media (min-width: 960px) {
  .nf-hero {
    padding: 56px 0 64px;
  }

  .nf-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.72fr);
    gap: clamp(20px, 3vw, 32px);
    align-items: center;
  }

  .nf-hero__copy {
    max-width: none;
  }

  .nf-hero__visual {
    justify-self: end;
    width: min(100%, 288px);
  }
}

/* ── Trust strip ── */
.nf-trust {
  padding: 28px 0;
  border-block: 1px solid var(--nf-border);
  background: var(--nf-surface);
}

.nf-trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 40px;
  color: var(--nf-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.nf-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nf-trust__item i {
  font-size: 1.25rem;
  color: var(--nf-teal);
}

/* ── Sections ── */
.nf-section {
  padding: 88px 0;
}

.nf-section--alt {
  background: var(--nf-surface);
  border-block: 1px solid var(--nf-border);
}

.nf-section__head {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.nf-section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--nf-teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nf-section__head h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3.5vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--nf-navy-deep);
  line-height: 1.12;
}

.nf-section__head p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--nf-muted);
  font-size: 1.05rem;
  font-weight: 500;
}

/* Bento features */
.nf-bento {
  display: grid;
  gap: 18px;
}

.nf-feature {
  position: relative;
  padding: 28px;
  border-radius: var(--nf-radius-lg);
  background: var(--nf-surface);
  border: 1px solid var(--nf-border);
  box-shadow: var(--nf-shadow-soft);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nf-feature::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top right, rgba(13, 148, 136, 0.12), transparent 70%);
  pointer-events: none;
}

.nf-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--nf-shadow);
}

.nf-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--nf-navy) 0%, var(--nf-teal) 100%);
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 8px 24px rgba(26, 35, 78, 0.22);
}

.nf-feature h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--nf-navy);
  letter-spacing: -0.02em;
}

.nf-feature p {
  margin: 0;
  color: var(--nf-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.nf-feature--wide {
  background: linear-gradient(145deg, var(--nf-navy-deep) 0%, #243056 50%, var(--nf-teal) 100%);
  color: #fff;
  border: none;
}

.nf-feature--wide h3,
.nf-feature--wide p {
  color: rgba(255, 255, 255, 0.92);
}

.nf-feature--wide .nf-feature__icon {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

@media (min-width: 768px) {
  .nf-bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .nf-feature--wide {
    grid-column: span 2;
  }
}

/* Steps timeline */
.nf-steps {
  display: grid;
  gap: 20px;
  counter-reset: nfstep;
}

.nf-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px 28px;
  border-radius: var(--nf-radius-lg);
  background: var(--nf-surface);
  border: 1px solid var(--nf-border);
  box-shadow: var(--nf-shadow-soft);
}

.nf-step__num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--nf-navy) 0%, var(--nf-teal) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(26, 35, 78, 0.2);
}

.nf-step__icon {
  position: absolute;
  top: 26px;
  right: 28px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--nf-teal);
  font-size: 1.3rem;
}

.nf-step h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--nf-navy);
}

.nf-step p {
  margin: 0;
  color: var(--nf-muted);
  font-size: 0.94rem;
  max-width: 36ch;
}

@media (min-width: 900px) {
  .nf-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .nf-step {
    grid-template-columns: 1fr;
    padding-top: 32px;
  }

  .nf-step__icon {
    position: static;
    margin-bottom: 16px;
  }

  .nf-step__num {
    margin-bottom: 16px;
  }
}

/* Audience */
.nf-audience {
  display: grid;
  gap: 24px;
}

.nf-audience-card {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--nf-radius-lg);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--nf-shadow);
}

.nf-audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.nf-audience-card > * {
  position: relative;
}

.nf-audience-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.nf-audience-card__head i {
  font-size: 2rem;
  opacity: 0.95;
}

.nf-audience-card--client {
  background: linear-gradient(145deg, var(--nf-navy-deep) 0%, var(--nf-navy-soft) 50%, var(--nf-sky) 100%);
}

.nf-audience-card--biz {
  background: linear-gradient(145deg, #064e3b 0%, var(--nf-teal) 55%, #5eead4 100%);
}

.nf-audience-card h3 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nf-audience-card > p {
  margin: 0 0 22px;
  opacity: 0.92;
  font-size: 1rem;
  max-width: 36ch;
}

.nf-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nf-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  font-weight: 500;
}

.nf-checklist li i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.1rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .nf-audience {
    grid-template-columns: 1fr 1fr;
  }
}

/* Download */
.nf-download {
  padding: 88px 0;
}

.nf-download__box {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 32px;
  align-items: center;
  padding: 48px 36px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--nf-navy-deep) 0%, #1e2d5a 40%, var(--nf-teal) 100%);
  color: #fff;
  box-shadow: var(--nf-shadow);
}

.nf-download__box::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: -120px;
  right: -80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.nf-download__box > * {
  position: relative;
}

.nf-download__box h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nf-download__box p {
  margin: 0;
  opacity: 0.9;
  max-width: 38rem;
  font-size: 1.02rem;
}

.nf-download__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

@media (min-width: 768px) {
  .nf-download__box {
    grid-template-columns: 1.15fr 1fr;
    padding: 52px 48px;
  }
}

/* Footer */
.nf-footer {
  padding: 56px 0 32px;
  background: var(--nf-navy-deep);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.nf-footer__grid {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}

.nf-footer__brand img {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
  border-radius: 18px;
}

.nf-footer__brand p {
  margin: 0;
  max-width: 28ch;
  line-height: 1.6;
  font-size: 0.88rem;
}

.nf-footer__col h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nf-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nf-footer__col li + li {
  margin-top: 10px;
}

.nf-footer__col a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.nf-footer__col a:hover {
  color: #fff;
}

.nf-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.82rem;
}

@media (min-width: 768px) {
  .nf-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

/* ── Floating actions ── */
.nf-fab {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 300;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
}

.nf-fab__btn {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(26, 35, 78, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.nf-fab__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(26, 35, 78, 0.28);
}

.nf-fab__btn--top {
  background: linear-gradient(145deg, var(--nf-navy) 0%, var(--nf-navy-soft) 100%);
}

.nf-fab__btn--top[hidden] {
  display: none;
}

.nf-fab__btn--whatsapp {
  background: linear-gradient(145deg, #128c7e 0%, #25d366 100%);
}

@media (min-width: 768px) {
  .nf-fab {
    right: max(24px, env(safe-area-inset-right, 0px));
    bottom: max(28px, env(safe-area-inset-bottom, 0px));
  }

  .nf-fab__btn {
    width: 54px;
    height: 54px;
    font-size: 1.45rem;
  }
}
