/* =========================================================
   Footer
========================================================= */
.nstudioFooterBoxBody {
  display: flex;
  flex-direction: column;
  padding: 55px 0 30px;
  color: var(--color-text-secondary);
  background-color: var(--color-background-primary);
}

/* =========================================================
   Linha principal do footer
========================================================= */
.nstudioFormRowSections {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;

  gap: 48px;
  flex-wrap: wrap;
}

/* =========================================================
   Bloco logo + slogan + form
========================================================= */
.nstudioFooterLogo {
  display: flex;
  flex-direction: column;
  gap: 12px;

  max-width: 420px;
  width: 100%;
}

.nstudioFooterLogoLink {
  display: inline-flex;
}

.nstudioFooterSlogan {
  font-size: 16px;
  font-weight: 400;
}

/* =========================================================
   Links
========================================================= */
.nstudioFooterLinks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 180px;
}

.nstudioFooterGroup {
  display: flex;
  flex-direction: row;
  gap: 240px;
}

.nstudioFooterLinksTitle {
  font-size: 16px;
  font-weight: 600;
}

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

.nstudioFooterLinksList li {
  margin-bottom: 8px;
}

.nstudioFooterLinksList a {
  color: var(--color-text-secondary);
  text-decoration: none;
}

.nstudioFooterLinksList a:hover {
  text-decoration: underline;
}

/* =========================================================
   Form
========================================================= */
.nstudioFooterForm {
  width: 100%;
  max-width: 384px;
  padding: 24px 0;
}

.nstudioFooterFormInner {
  display: flex;
  gap: 8px;
  width: 100%;
  height: 40px;
}

.nstudioFooterInput {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--color-border-primary);
  background-color: var(--color-background-secondary);
}

.nstudioFooterButton {
  padding: 10px 16px;
  border-radius: 14px;
  border: none;
  background-color: var(--nstudio-dark-blue);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}

/* =========================================================
   Box visual (imagem grande)
========================================================= */
.nstudioBox {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  margin: 40px auto;
  padding: 0 16px;
}

.nstudioBox img {
  width: 100%;
  height: 480px;
  object-fit: contain;

  pointer-events: none;
  user-select: none;
}

/* =========================================================
   Footer bottom
========================================================= */
.nstudioFooterBox {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;

  gap: 20px;
}

.nstudioFooterCopy {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-secondary);
}

/* =========================================================
   Tablet
========================================================= */
@media (max-width: 1024px) {
  .nstudioFormRowSections {
    gap: 32px;
  }

  .nstudioBox img {
    max-height: 420px;
  }


}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 900px) {
  .nstudioFooterGroup {
    gap: 200px;
  }
}


@media (max-width: 768px) {
  .nstudioFooterBoxBody {
    padding: 32px 0;
  }

  .nstudioFormRowSections {
    flex-direction: column;
    gap: 32px;
  }

  .nstudioFooterLogo {
    max-width: 100%;
  }

  .nstudioFooterFormInner {
    flex-direction: row;
    height: auto;
  }

  .nstudioFooterInput {
    width: 100%;
    flex: 2;
  }

  .nstudioFooterButton {
    border-radius: 12px;
  }

  .nstudioBox {
    margin: 64px auto;
  }

  .nstudioBox img {
    max-height: 120px;
  }

  .nstudioFooterBox {
    flex-direction: row;
    text-align: center;
    gap: 12px;
  }

  .nstudioFooterCopy {
    font-size: 14px;
  }

  .nstudioFooterForm {
    width: 100%;
    max-width: none;
    padding: 24px 0;
  }


  .nstudioFooterGroup {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }
}