/* ===========================================================
   New Mind — Comunicação Interna | Landing Page
   Self-contained stylesheet (no WordPress/theme dependency)
   =========================================================== */

/* Fallback web font — REMOVE this @import if "Poppins-Bold" and
   "Poppins Regular" are already registered as custom font-faces
   in your WordPress/Avada install (their exact names suggest they
   might be). This import only kicks in as a backup so the page
   still looks right if those custom families aren't found. */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,700&display=swap');

.nm-ci {
  /* ---- Design tokens ---- */
  --nm-ink:        #16130E;
  --nm-charcoal:   #262119;
  --nm-paper:      #FFFFFF;
  --nm-yellow:     #FFCD00;
  --nm-yellow-deep:#C79A00;
  --nm-stone:      #857D6D;
  --nm-line:       rgba(22,19,14,0.14);
  --nm-line-on-ink:rgba(255,249,238,0.16);

  /* Headings/destaques use Poppins-Bold; body copy uses Poppins Regular.
     If your site already has these exact custom font-faces registered,
     they'll be picked up automatically — the Google "Poppins" family
     above is only the fallback. */
  --nm-font-head: "Poppins-Bold", "Poppins", Arial, sans-serif;
  --nm-font-body: "Poppins Regular", "Poppins", Arial, sans-serif;

  --nm-radius: 6px;
  --nm-ease: cubic-bezier(.22,.68,0,1);

  background: var(--nm-paper);
  color: var(--nm-ink);
  font-family: var(--nm-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.nm-ci *, .nm-ci *::before, .nm-ci *::after { box-sizing: border-box; }
.nm-ci img, .nm-ci svg { display: block; max-width: 100%; }
.nm-ci a { color: inherit; text-decoration: none; }
.nm-ci ul { list-style: none; margin: 0; padding: 0; }
.nm-ci h1, .nm-ci h2, .nm-ci h3, .nm-ci p { margin: 0; }
.nm-ci button { font: inherit; cursor: pointer; }
.nm-ci h1, .nm-ci h2, .nm-ci h3 { font-family: var(--nm-font-head); font-weight: 700; }

.nm-ci .nm-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Reusable yellow arrow — the brand's recurring directional mark */
.nm-ci .nm-arrow { color: var(--nm-yellow); flex-shrink: 0; }

.nm-ci .nm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nm-font-head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nm-yellow-deep);
}
.nm-ci .nm-eyebrow .nm-arrow { width: 14px; height: 14px; }

.nm-ci .nm-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--nm-ease), transform .8s var(--nm-ease);
}
.nm-ci .nm-reveal.is-visible { opacity: 1; transform: none; }
.nm-ci .nm-reveal-delay-1.is-visible { transition-delay: .08s; }
.nm-ci .nm-reveal-delay-2.is-visible { transition-delay: .16s; }
.nm-ci .nm-reveal-delay-3.is-visible { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .nm-ci .nm-reveal { opacity: 1; transform: none; transition: none; }
  .nm-ci * { scroll-behavior: auto !important; }
}

/* ===================== NAV (dark) ===================== */
.nm-ci .nm-nav {
  position: sticky; top: 0; z-index: 40;
  background: var(--nm-ink);
  border-bottom: 1px solid var(--nm-line-on-ink);
}
.nm-ci .nm-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  max-width: 1180px; margin: 0 auto;
}
.nm-ci .nm-logo { display: flex; align-items: center; }
.nm-ci .nm-logo__img { height: 30px; width: auto; }
/* If the source logo file reads as dark/black-on-transparent and
   disappears on this black header, uncomment the line below to force
   it to render in white instead of swapping the source file:
   .nm-ci .nm-logo__img { filter: brightness(0) invert(1); } */

.nm-ci .nm-nav__links { display: flex; align-items: center; gap: 32px; }
.nm-ci .nm-nav__links a {
  font-family: var(--nm-font-head); font-weight: 700; font-size: 14px;
  color: var(--nm-paper); opacity: .68;
  transition: opacity .2s;
}
.nm-ci .nm-nav__links a:hover { opacity: 1; }
.nm-ci .nm-nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--nm-font-head); font-weight: 700; font-size: 14px;
  background: var(--nm-yellow); color: var(--nm-ink);
  padding: 10px 20px; border-radius: 100px;
  transition: background .2s var(--nm-ease), transform .2s var(--nm-ease);
}
.nm-ci .nm-nav__cta:hover { background: #E6B800; transform: translateY(-1px); }
.nm-ci .nm-nav__cta .nm-arrow { color: var(--nm-ink); width: 14px; height: 14px; }
.nm-ci .nm-nav__toggle { display: none; }
.nm-ci .nm-nav__mobile { display: none; }

@media (max-width: 860px) {
  .nm-ci .nm-nav__links { display: none; }
  .nm-ci .nm-nav__cta { display: none; }
  .nm-ci .nm-nav__toggle {
    display: block; background: none; border: none; padding: 6px;
  }
  .nm-ci .nm-nav__toggle span {
    display: block; width: 22px; height: 2px; background: var(--nm-paper);
    margin: 5px 0; transition: transform .25s, opacity .25s;
  }
  .nm-ci.is-menu-open .nm-nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nm-ci.is-menu-open .nm-nav__toggle span:nth-child(2) { opacity: 0; }
  .nm-ci.is-menu-open .nm-nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nm-ci .nm-nav__mobile {
    flex-direction: column; gap: 2px;
    padding: 8px 32px 20px; border-bottom: 1px solid var(--nm-line-on-ink);
    background: var(--nm-ink);
  }
  .nm-ci.is-menu-open .nm-nav__mobile { display: flex; }
  .nm-ci .nm-nav__mobile a {
    font-family: var(--nm-font-head); font-weight: 700; font-size: 16px;
    color: var(--nm-paper);
    padding: 12px 0; border-bottom: 1px solid var(--nm-line-on-ink);
  }
  .nm-ci .nm-nav__mobile-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    border-bottom: none !important; margin-top: 10px;
    background: var(--nm-yellow); color: var(--nm-ink) !important;
    text-align: center; border-radius: 100px; padding: 13px 0 !important;
  }
}

/* ===================== HERO ===================== */
/* Fundo = foto real da porta amarela (mvv-cultura-parede.png), injetada
   via --nm-door-bg inline no PHP. Texto em tinta escura (fundo é claro). */
.nm-ci .nm-hero {
  background-size: cover;
  background-repeat: no-repeat;
  /* Ajuste esta posicao depois de subir o arquivo real de producao -
     "top" e so um ponto de partida. */
  background-position: left top;
  color: var(--nm-paper);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  min-height: 560px;
  /*display: flex;*/
  align-items: center;
}
/* Overlay preto da esquerda pra direita - garante contraste do texto
   (agora branco) contra a foto, mais forte perto do bloco de texto e
   sumindo a direita para nao esconder a foto inteira. */
.nm-ci .nm-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,13,9,.82) 0%, rgba(15,13,9,.55) 42%, rgba(15,13,9,.08) 72%, rgba(15,13,9,0) 100%);
  z-index: 1;
}
.nm-ci .nm-hero__inner {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
  position: relative; z-index: 2;
}
.nm-ci .nm-hero__inner > div { max-width: 620px; }
.nm-ci .nm-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px); line-height: 1.04; letter-spacing: -.02em; color: #fff;
}
.nm-ci .nm-hero h1 em {
  font-style: normal; background: var(--nm-yellow); color: var(--nm-ink);
  padding: 2px 12px; box-decoration-break: clone; -webkit-box-decoration-break: clone;
  line-height: 90px;
}
.nm-ci .nm-hero__lede {
  font-size: 18px; line-height: 1.65; color: rgba(255,249,238,.82);
  max-width: 480px; margin-top: 24px; font-weight: 500;
}
.nm-ci .nm-hero__actions { display: flex; align-items: center; gap: 18px; margin-top: 36px; flex-wrap: wrap; }
.nm-ci .nm-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--nm-font-head); font-weight: 700; font-size: 15px;
  padding: 15px 26px; border-radius: 100px;
  transition: transform .25s var(--nm-ease), background .25s;
}
.nm-ci .nm-btn .nm-arrow { width: 15px; height: 15px; }
.nm-ci .nm-btn--solid { background: var(--nm-yellow); color: var(--nm-ink); }
.nm-ci .nm-btn--solid .nm-arrow { color: var(--nm-ink); }
.nm-ci .nm-btn--solid:hover { transform: translateY(-2px); background: #E6B800; }
.nm-ci .nm-btn--ghost { color: var(--nm-paper); border: 1px solid rgba(255,249,238,.45); }
.nm-ci .nm-btn--ghost:hover { background: rgba(255,249,238,.12); transform: translateY(-2px); }
.nm-ci .nm-btn--dark { background: var(--nm-ink); color: var(--nm-paper); }
.nm-ci .nm-btn--dark .nm-arrow { color: var(--nm-yellow); }
.nm-ci .nm-btn--dark:hover { background: var(--nm-charcoal); transform: translateY(-2px); }

@media (max-width: 900px) {
  .nm-ci .nm-hero { min-height: 460px; }
}


/* ===================== SECTION SHELL ===================== */
.nm-ci section { padding: 108px 0; }
.nm-ci .nm-section-head { max-width: 640px; margin-bottom: 56px; }
.nm-ci .nm-section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -.015em; line-height: 1.12;
  margin-top: 14px;
}
.nm-ci .nm-section-head p {
  margin-top: 16px; font-size: 17px; color: var(--nm-charcoal); opacity: .72; line-height: 1.65;
}

/* ===================== INTRO / MANIFESTO ===================== */
/* Fundo = base (parte de baixo) da mesma imagem da porta amarela. */
.nm-ci .nm-intro {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  padding: 96px 0;
}
.nm-ci .nm-intro__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.nm-ci .nm-intro__media { display: flex; flex-direction: column; gap: 22px; }
.nm-ci .nm-intro__content { display: flex; flex-direction: column; padding-left: 48px; }
.nm-ci .nm-intro__mark { max-width: 220px; height: auto; display: block; margin-bottom: 26px; }

/* Banner sobre a foto da porta, no estilo do material de marca:
   frase de abertura + "comunicação" + caixa preta "de DENTRO" + "pra FORA". */
.nm-ci .nm-intro__banner { color: var(--nm-ink); max-width: 460px; }
.nm-ci .nm-intro__banner-lede {
  font-family: var(--nm-font-body); font-weight: 500;
  font-size: clamp(15px, 1.6vw, 18px); line-height: 1.4;
  margin-bottom: 14px; max-width: 320px;
}
.nm-intro__media.nm-reveal.is-visible {
    margin-top: 100px;
}
.nm-ci .nm-intro__banner-word {
  font-family: var(--nm-font-head); font-weight: 800;
  font-size: clamp(34px, 4vw, 52px); line-height: 1; letter-spacing: -.01em;
  margin: 0 0 6px;
}
.nm-ci .nm-intro__banner-row { display: flex; align-items: flex-end; gap: 10px; flex-wrap: wrap; }
.nm-ci .nm-intro__banner-chip {
  display: inline-block; background: var(--nm-ink); color: var(--nm-paper);
  font-family: var(--nm-font-head); font-weight: 400; font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.15; padding: 4px 14px 6px;
}
.nm-ci .nm-intro__banner-chip strong { font-weight: 800; }
.nm-ci .nm-intro__banner-fora-wrap { display: flex; flex-direction: column; line-height: .82; }
.nm-ci .nm-intro__banner-pra {
  font-family: var(--nm-font-head); font-weight: 500; font-size: clamp(13px, 1.4vw, 16px);
}
.nm-ci .nm-intro__banner-fora {
  font-family: var(--nm-font-head); font-weight: 800; font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -.01em;
}

/* Variante "headline corrida" do banner (usada na versão Giants) — texto
   único em negrito com um trecho em <em> destacado, mesmo tratamento do
   H1 do hero (chip amarelo). */
.nm-ci .nm-intro__banner-headline {
  font-family: var(--nm-font-head); font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.12; letter-spacing: -.015em;
  margin: 0;
}
.nm-ci .nm-intro__banner-headline em {
  font-style: normal; background: var(--nm-yellow); color: var(--nm-ink);
  padding: 2px 12px; box-decoration-break: clone; -webkit-box-decoration-break: clone;
}

/* Lista de estatísticas ("A New Mind já desenvolveu:") na versão Giants. */
.nm-ci .nm-intro__stats { margin-top: 28px; }
.nm-ci .nm-intro__stats-label {
  font-family: var(--nm-font-head); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .06em; color: var(--nm-stone);
  margin: 0 0 12px;
}
.nm-ci .nm-intro__stats-list { display: flex; flex-direction: column; gap: 10px; }
.nm-ci .nm-intro__stats-list li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--nm-font-head); font-weight: 700; font-size: 16px; color: var(--nm-ink);
}
.nm-ci .nm-intro__stats-list .nm-arrow { width: 16px; height: 16px; flex-shrink: 0; }

.nm-ci .nm-intro__statement {
  font-family: var(--nm-font-head); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.42; letter-spacing: -.005em;
}
.nm-ci .nm-intro__statement strong { color: var(--nm-ink); background: linear-gradient(180deg, transparent 66%, var(--nm-yellow) 66%); }
@media (max-width: 780px) {
  .nm-ci .nm-intro__inner { grid-template-columns: 1fr; gap: 24px; }
  .nm-ci .nm-intro__content { padding-left: 0; }
}

/* ===================== COMPARISON — matches the reference print:
   yellow background, two tilted "peça" placeholders, a dashed line
   down to a colored badge (X / check), then the list underneath. ===================== */
.nm-ci .nm-compare { background: var(--nm-yellow); color: var(--nm-ink); overflow: hidden; }
.nm-ci .nm-compare .nm-section-head p { color: var(--nm-ink); opacity: .68; }
.nm-ci .nm-compare .nm-eyebrow { color: var(--nm-ink); opacity: .6; }
.nm-ci .nm-compare .nm-eyebrow .nm-arrow { color: var(--nm-ink); }

.nm-ci .nm-compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.nm-ci .nm-compare__col { display: flex; flex-direction: column; align-items: center; text-align: center; }

/* Placeholder "peça" card — swap for the real comunicado/carta artwork later */
.nm-ci .nm-compare__card {
  width: 100%; max-width: 300px; aspect-ratio: 3 / 4;
  background: #fff; border-radius: 6px; padding: 22px;
  box-shadow: 0 24px 40px -12px rgba(22,19,14,.32);
  display: flex; flex-direction: column; gap: 10px;
}
.nm-ci .nm-compare__col--bad .nm-compare__card { transform: rotate(-5deg); }
.nm-ci .nm-compare__col--good .nm-compare__card { transform: rotate(4deg); }
.nm-ci .nm-compare__card-tag {
  align-self: flex-start; font-family: var(--nm-font-head); font-weight: 700;
  font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 3px; color: #fff;
}
.nm-ci .nm-compare__col--bad .nm-compare__card-tag { background: #D63B32; }
.nm-ci .nm-compare__col--good .nm-compare__card-tag { background: #1E9E5A; }
.nm-ci .nm-compare__card-line { height: 8px; border-radius: 2px; background: var(--nm-line); }
.nm-ci .nm-compare__card-line--w60 { width: 60%; }
.nm-ci .nm-compare__card-line--w80 { width: 80%; }
.nm-ci .nm-compare__card-line--w40 { width: 40%; }
.nm-ci .nm-compare__card-note {
  margin-top: auto; font-family: var(--nm-font-head); font-weight: 700; font-size: 11px;
  color: var(--nm-stone); text-transform: uppercase; letter-spacing: .06em;
}

.nm-ci .nm-compare__connector { display: flex; flex-direction: column; align-items: center; margin-top: 22px; }
.nm-ci .nm-compare__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--nm-ink); }
.nm-ci .nm-compare__line { width: 2px; height: 34px; border-left: 2px dashed rgba(22,19,14,.5); }
.nm-ci .nm-compare__badge {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 18px -6px rgba(22,19,14,.35);
}
.nm-ci .nm-compare__badge svg { width: 20px; height: 20px; color: #fff; }
.nm-ci .nm-compare__col--bad .nm-compare__badge { background: #D63B32; }
.nm-ci .nm-compare__col--good .nm-compare__badge { background: #1E9E5A; }

.nm-ci .nm-compare__title { margin-top: 22px; font-family: var(--nm-font-head); font-weight: 700; font-size: 19px; }
.nm-ci .nm-compare__list { margin-top: 14px; display: inline-flex; flex-direction: column; gap: 9px; text-align: left; }
.nm-ci .nm-compare__list li { display: flex; align-items: center; gap: 10px; font-size: 15.5px; }
.nm-ci .nm-compare__icon { flex-shrink: 0; width: 16px; height: 16px; }
.nm-ci .nm-compare__col--bad .nm-compare__icon { color: #B7301F; }
.nm-ci .nm-compare__col--good .nm-compare__icon { color: #14834A; }

@media (max-width: 780px) {
  .nm-ci .nm-compare__grid { grid-template-columns: 1fr; gap: 64px; }
}

/* ===================== PROCESS — zigzag (6 real steps)
   Images bleed edge-to-edge on their side; text stays aligned with
   the rest of the page's content column. Icons swapped for plain
   placeholders — drop real photography in .nm-zig__media later. ===================== */
.nm-ci .nm-zig { background: var(--nm-paper); }
.nm-ci .nm-zig__list { display: flex; flex-direction: column; }
.nm-ci .nm-zig__row {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
}
.nm-ci .nm-zig__row--reverse .nm-zig__media { order: 2; }
.nm-ci .nm-zig__row--reverse .nm-zig__text { order: 1; }

/* Placeholder media — flush to the outer viewport edge (no radius,
   no side padding) so it always reaches the end of the screen. */
.nm-ci .nm-zig__media {
  position: relative; min-height: 360px; overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(22,19,14,.05) 0 2px, transparent 2px 14px),
    #E9E7E1;
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid var(--nm-line); border-bottom: 1px solid var(--nm-line);
}
.nm-ci .nm-zig__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.nm-ci .nm-zig__placeholder { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--nm-stone); }
.nm-ci .nm-zig__placeholder svg { width: 46px; height: 46px; }
.nm-ci .nm-zig__placeholder span {
  font-family: var(--nm-font-head); font-weight: 700; font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
}
.nm-ci .nm-zig__num {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--nm-font-head); font-weight: 700; font-size: 14px;
  letter-spacing: .06em; color: var(--nm-ink);
  background: rgba(255,249,238,.92); padding: 4px 10px; border-radius: 4px;
  box-shadow: 0 4px 12px -4px rgba(22,19,14,.3);
}

/* Text column keeps the same left/right rhythm as the rest of the
   page's .nm-wrap content, while the row itself spans full width. */
.nm-ci .nm-zig__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px 56px 48px max(32px, calc((100vw - 1180px) / 2 + 32px));
}
.nm-ci .nm-zig__row--reverse .nm-zig__text {
  padding: 48px max(32px, calc((100vw - 1180px) / 2 + 32px)) 48px 56px;
}
.nm-ci .nm-zig__text h3 { font-size: 21px; letter-spacing: -.01em; }
.nm-ci .nm-zig__text p { margin-top: 10px; color: var(--nm-charcoal); opacity: .74; font-size: 15.5px; max-width: 460px; }
.nm-ci .nm-zig__tag {
  display: inline-block; margin-bottom: 12px; font-family: var(--nm-font-head);
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--nm-yellow-deep); background: rgba(255,205,0,.16); padding: 5px 10px; border-radius: 4px;
  align-self: flex-start;
}

.nm-ci .nm-zig__connector { display: flex; justify-content: center; padding: 6px 0; }
.nm-ci .nm-zig__connector .nm-arrow { width: 20px; height: 20px; opacity: .55; }

@media (max-width: 720px) {
  .nm-ci .nm-zig__row,
  .nm-ci .nm-zig__row--reverse { grid-template-columns: 1fr; }
  .nm-ci .nm-zig__row--reverse .nm-zig__media,
  .nm-ci .nm-zig__row--reverse .nm-zig__text { order: 0; }
  .nm-ci .nm-zig__text,
  .nm-ci .nm-zig__row--reverse .nm-zig__text { padding: 32px 20px; }
  .nm-ci .nm-zig__media { min-height: 240px; }
}

/* ===================== "ASSIM, PODEMOS ATUAR COM" — single column ===================== */
.nm-ci .nm-atuamos { background: var(--nm-paper); }
.nm-ci .nm-atuamos__list {
  display: flex; flex-direction: column; max-width: 760px;
}
.nm-ci .nm-atuamos__item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 0; border-top: 1px solid var(--nm-line);
}
.nm-ci .nm-atuamos__list .nm-atuamos__item:last-child { border-bottom: 1px solid var(--nm-line); }
.nm-ci .nm-atuamos__item .nm-arrow { width: 20px; height: 20px; margin-top: 3px; }
.nm-ci .nm-atuamos__item strong {
  display: block; font-family: var(--nm-font-head); font-weight: 700; font-size: 16.5px; letter-spacing: -.005em;
}
.nm-ci .nm-atuamos__item span { display: block; margin-top: 5px; font-size: 14.5px; color: var(--nm-charcoal); opacity: .7; line-height: 1.55; }

/* ===================== Brand wave divider (NMMotion assets) ===================== */
.nm-ci .nm-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
.nm-ci .nm-divider img { width: 100%; height: clamp(60px, 10vw, 140px); object-fit: cover; display: block; }
.nm-ci .nm-divider--dark { background: var(--nm-ink); }
.nm-ci .nm-divider--light { background: var(--nm-paper); }

/* ===================== PROOF / STATS ===================== */
.nm-ci .nm-proof { background: var(--nm-paper); }
.nm-ci .nm-proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.nm-ci .nm-proof__card { border: 1px solid var(--nm-line); border-radius: var(--nm-radius); padding: 34px 30px; }
.nm-ci .nm-proof__num {
  font-family: var(--nm-font-head); font-weight: 700; font-size: 44px; letter-spacing: -.02em;
  display: flex; align-items: baseline; gap: 4px;
}
.nm-ci .nm-proof__num small { font-family: var(--nm-font-head); font-size: 17px; font-weight: 700; color: var(--nm-yellow-deep); }
.nm-ci .nm-proof__label { margin-top: 10px; font-size: 14.5px; color: var(--nm-charcoal); opacity: .72; line-height: 1.5; }
@media (max-width: 780px) { .nm-ci .nm-proof__grid { grid-template-columns: 1fr; } }

/* Client logo carousel — auto-populated from assets/img/clients/ (see
   nm_ci_client_logos() in the PHP). Falls back to "Logo cliente"
   placeholders when that folder is empty. */
.nm-ci .nm-clients { margin-top: 64px; overflow: hidden; position: relative; }
.nm-ci .nm-clients::before, .nm-ci .nm-clients::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 64px; z-index: 2; pointer-events: none;
}
.nm-ci .nm-clients::before { left: 0; background: linear-gradient(90deg, var(--nm-paper), transparent); }
.nm-ci .nm-clients::after { right: 0; background: linear-gradient(270deg, var(--nm-paper), transparent); }
.nm-ci .nm-clients__track {
  display: flex; align-items: center; gap: 20px; width: max-content;
  animation: nm-clients-scroll 30s linear infinite;
}
.nm-ci.no-js .nm-clients__track,
.nm-ci .nm-clients:hover .nm-clients__track { animation-play-state: paused; }
@keyframes nm-clients-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.nm-ci .nm-clients__logo {
  flex-shrink: 0; width: 220px; height: 92px;
  border: 1px solid var(--nm-line); border-radius: var(--nm-radius);
  display: flex; align-items: center; justify-content: center;
  background: #ECEAE4; padding: 16px 24px; box-sizing: border-box;
}
.nm-ci .nm-clients__logo img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; display: block;
  filter: grayscale(1) opacity(.7); transition: filter .25s;
}
.nm-ci .nm-clients__logo:hover img { filter: none; }
.nm-ci .nm-clients__logo span {
  font-family: var(--nm-font-head); font-weight: 700; font-size: 13px;
  letter-spacing: .04em; color: var(--nm-stone); text-transform: uppercase;
}
@media (max-width: 640px) {
  .nm-ci .nm-clients__logo { width: 160px; height: 76px; }
}

/* ===================== TESTIMONIALS (só na versão "Giants") =====================
   Um depoimento por vez, com setas + bolinhas de navegação (ver JS). */
.nm-ci .nm-testimonials { margin-top: 56px; max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }
.nm-ci .nm-testimonials__viewport { position: relative; min-height: 148px; }
.nm-ci .nm-testimonials__slide { display: none; }
.nm-ci .nm-testimonials__slide.is-active { display: block; animation: nm-testimonial-fade .45s var(--nm-ease); }
@keyframes nm-testimonial-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.nm-ci .nm-testimonials__quote-mark { width: 26px; height: 26px; color: var(--nm-yellow-deep); margin: 0 auto 16px; }
.nm-ci .nm-testimonials__text {
  font-family: var(--nm-font-head); font-weight: 600; font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55; color: var(--nm-ink); margin: 0;
}
.nm-ci .nm-testimonials__author { margin-top: 20px; }
.nm-ci .nm-testimonials__author strong { display: block; font-family: var(--nm-font-head); font-weight: 700; font-size: 15px; }
.nm-ci .nm-testimonials__author span { display: block; margin-top: 2px; font-size: 13.5px; color: var(--nm-stone); }
.nm-ci .nm-testimonials__nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 30px; }
.nm-ci .nm-testimonials__arrow {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--nm-line);
  background: #fff; display: flex; align-items: center; justify-content: center;
  color: var(--nm-ink); cursor: pointer; transition: background .2s, transform .2s;
}
.nm-ci .nm-testimonials__arrow:hover { background: #F3F1EB; transform: translateY(-1px); }
.nm-ci .nm-testimonials__arrow svg { width: 16px; height: 16px; }
.nm-ci .nm-testimonials__dots { display: flex; align-items: center; gap: 8px; }
.nm-ci .nm-testimonials__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--nm-line);
  border: none; padding: 0; cursor: pointer; transition: background .2s, transform .2s;
}
.nm-ci .nm-testimonials__dot.is-active { background: var(--nm-yellow-deep); transform: scale(1.35); }

/* ===================== RODCTA (só na versão "Giants") =====================
   Reaproveita toda a estrutura de .nm-cta (grid, textos, .nm-form) — só
   troca o fundo sólido pela foto do Rodney com degradê preto por cima
   (mais escuro perto do texto/CTA, à esquerda). */
.nm-ci .nm-rodcta.nm-cta {
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.nm-ci .nm-rodcta__whatsapp { margin-top: 32px; }

/* ===================== CTA / FORM ===================== */
.nm-ci .nm-cta { background: var(--nm-ink); color: var(--nm-paper); }
.nm-ci .nm-cta__inner { display: grid; grid-template-columns: 1fr .95fr; gap: 64px; align-items: start; }
.nm-ci .nm-cta h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -.015em; line-height: 1.12;
  color: #fff;
}
.nm-ci .nm-cta__lede { margin-top: 18px; font-size: 17px; color: rgba(255,249,238,.75); max-width: 440px; line-height: 1.65; }
.nm-ci .nm-cta__direct { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.nm-ci .nm-cta__direct a { font-family: var(--nm-font-head); font-weight: 700; font-size: 15px; color: var(--nm-yellow); display: inline-flex; align-items: center; gap: 8px; }
.nm-ci .nm-cta__direct a svg { width: 16px; height: 16px; }

.nm-ci .nm-form { background: var(--nm-paper); color: var(--nm-ink); border-radius: 8px; padding: 36px; }
.nm-ci .nm-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.nm-ci .nm-form label { display: block; }
.nm-ci .nm-form__field { margin-bottom: 14px; }
.nm-ci .nm-form__field span {
  display: block; font-family: var(--nm-font-head); font-weight: 700; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 7px; color: var(--nm-charcoal);
}
.nm-ci .nm-form input, .nm-ci .nm-form textarea {
  width: 100%; border: 1px solid var(--nm-line); border-radius: 5px; padding: 12px 14px;
  font-family: var(--nm-font-body); font-size: 15px; background: #fff; color: var(--nm-ink);
  transition: border-color .2s, box-shadow .2s;
}
.nm-ci .nm-form input:focus, .nm-ci .nm-form textarea:focus {
  outline: none; border-color: var(--nm-yellow-deep); box-shadow: 0 0 0 3px rgba(255,205,0,.3);
}
.nm-ci .nm-form textarea { resize: vertical; min-height: 90px; }

.nm-ci .nm-form__checks { display: flex; flex-direction: column; gap: 9px; }
.nm-ci .nm-form__check {
  display: flex; align-items: flex-start; gap: 9px; cursor: pointer;
  font-family: var(--nm-font-body); font-size: 14.5px; color: var(--nm-ink);
}
.nm-ci .nm-form__check input {
  width: 17px; height: 17px; margin: 1px 0 0; flex-shrink: 0; accent-color: var(--nm-yellow-deep);
  cursor: pointer;
}
.nm-ci .nm-form__check span {
  display: inline; font-family: var(--nm-font-body); font-weight: 400; font-size: 14.5px;
  text-transform: none; letter-spacing: normal; color: var(--nm-ink); margin: 0;
}

.nm-ci .nm-form__submit { width: 100%; margin-top: 6px; justify-content: center; border: none; }
.nm-ci .nm-form__note { margin-top: 12px; font-size: 12.5px; color: var(--nm-stone); text-align: center; }
.nm-ci .nm-form__success {
  display: none; text-align: center; padding: 30px 10px;
  font-family: var(--nm-font-head); font-weight: 700; font-size: 17px;
}
.nm-ci .nm-form__success svg { width: 32px; height: 32px; color: var(--nm-yellow-deep); margin: 0 auto 14px; }
.nm-ci.form-sent .nm-form__fields { display: none; }
.nm-ci.form-sent .nm-form__success { display: block; }

@media (max-width: 900px) {
  .nm-ci .nm-cta__inner { grid-template-columns: 1fr; }
  .nm-ci .nm-form__row { grid-template-columns: 1fr; }
}

/* ===================== FOOTER ===================== */
/* ===================== FOOTER (igual à referência) ===================== */
.nm-ci .nm-footer { background: #262320; color: rgba(255,249,238,.82); padding: 88px 0 64px; position: relative; }
.nm-ci .nm-footer__grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.nm-ci .nm-footer__main { max-width: 620px; }

.nm-ci .nm-footer__logo { margin-bottom: -26px; }
.nm-ci .nm-footer__logo img {
    height: 180px;
    width: auto;
    display: block;    
    margin-left: -30px;
    margin-top: -60px;

}
.nm-ci .nm-footer__copy { font-size: 15px; line-height: 1.65; margin: 0; }

.nm-ci .nm-footer__rule { display: block; width: 220px; height: 2px; background: var(--nm-yellow); margin: 26px 0; }

.nm-ci .nm-footer__address { margin-bottom: 22px; }
.nm-ci .nm-footer__address p { font-size: 15px; line-height: 1.65; margin: 0; }

.nm-ci .nm-footer__whatsapp { margin: 0; }
.nm-ci .nm-footer__whatsapp a { font-weight: 700; font-size: 15px; color: #fff; }
.nm-ci .nm-footer__whatsapp a:hover { color: var(--nm-yellow); }

.nm-ci .nm-footer__social { display: flex; gap: 12px; flex-shrink: 0; }
.nm-ci .nm-footer__social-icon {
  width: 40px; height: 40px; border-radius: 6px;
  background: var(--nm-yellow); color: #262320;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s var(--nm-ease), background .2s;
}
.nm-ci .nm-footer__social-icon svg { width: 22px; height: 22px; }
.nm-ci .nm-footer__social-icon:hover { background: #E6B800; transform: translateY(-2px); }

@media (max-width: 720px) {
  .nm-ci .nm-footer__grid { flex-direction: column; }
  .nm-ci .nm-footer__social { order: -1; }
}

/* Botão flutuante "voltar ao topo" */
.nm-ci .nm-back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 50;
  width: 52px; height: 52px; border-radius: 10px; border: none; cursor: pointer;
  background: var(--nm-yellow); color: var(--nm-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 28px -10px rgba(0,0,0,.45);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .3s var(--nm-ease), transform .3s var(--nm-ease), background .2s;
}
.nm-ci .nm-back-to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.nm-ci .nm-back-to-top:hover { background: #E6B800; }
.nm-ci .nm-back-to-top svg { width: 20px; height: 20px; }


@media (max-width: 640px) {
  .nm-ci .nm-wrap { padding: 0 20px; }
  .nm-ci section { padding: 72px 0; }
  .nm-ci .nm-nav__inner { padding: 12px 20px; }
}
