/* ==========================
   NS Gestão Digital - V2
   Direção: agência local premium
   ========================== */

:root {
  --azul-principal: #005CFF;
  --azul-medio: #0088FF;
  --azul-claro: #14C8FF;
  --azul-destaque: #2D9CFF;
  --fundo-escuro-principal: #020817;
  --fundo-secundario: #071224;
  --fundo-cards: #0B1830;
  --branco: #FFFFFF;
  --cinza-claro: #D9E2F2;
  --cinza-texto: #9FB3C8;

  --borda: rgba(159, 179, 200, 0.14);
  --borda-azul: rgba(20, 200, 255, 0.24);
  --sombra: 0 22px 70px rgba(0, 0, 0, 0.32);

  --container: 1160px;
  --radius: 24px;
  --header: 86px;
  --ease: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 22px);
}

body {
  margin: 0;
  color: var(--cinza-claro);
  background:
    linear-gradient(180deg, #020817 0%, #041023 48%, #020817 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

::selection {
  background: var(--azul-principal);
  color: var(--branco);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--branco);
  color: var(--fundo-escuro-principal);
  transform: translateY(-140%);
  transition: transform var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  display: flex;
  align-items: center;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease), backdrop-filter var(--ease);
}

.header.is-scrolled {
  background: rgba(2, 8, 23, 0.84);
  border-bottom: 1px solid var(--borda);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  background: #000;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--cinza-claro);
  font-size: 0.9rem;
  font-weight: 800;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--branco);
  background: rgba(255, 255, 255, 0.06);
}

.nav__button {
  margin-left: 8px;
  color: var(--branco) !important;
  background: linear-gradient(135deg, var(--azul-principal), var(--azul-medio)) !important;
  box-shadow: 0 14px 38px rgba(0, 92, 255, 0.3);
}

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

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--borda);
  border-radius: 14px;
  background: rgba(7, 18, 36, 0.85);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--branco);
  transition: transform var(--ease), opacity var(--ease);
}

.menu-button.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header) + 72px) 0 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(0, 136, 255, 0.17), transparent 32%),
    linear-gradient(90deg, rgba(0, 92, 255, 0.10), transparent 52%);
  pointer-events: none;
}

.hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
}

.hero__line {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(20, 200, 255, 0.55), rgba(0, 92, 255, 0.15), transparent);
  transform: rotate(-18deg);
}

.hero__line--one {
  width: 620px;
  right: -120px;
  top: 26%;
}

.hero__line--two {
  width: 480px;
  right: -60px;
  top: 42%;
  opacity: 0.48;
}

.hero__line--three {
  width: 360px;
  right: 110px;
  top: 58%;
  opacity: 0.3;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--azul-claro);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tag::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--azul-principal), var(--azul-claro));
}

.tag--light {
  color: rgba(255, 255, 255, 0.9);
}

.tag--light::before {
  background: rgba(255, 255, 255, 0.52);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--branco);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

h1 span {
  display: block;
  color: var(--azul-destaque);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.hero__text,
.section__copy p,
.section__heading p {
  color: var(--cinza-texto);
  font-size: 1.06rem;
}

.hero__text {
  max-width: 680px;
  margin-top: 24px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  line-height: 1;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-3px);
}

.button:focus-visible {
  outline: 3px solid rgba(20, 200, 255, 0.4);
  outline-offset: 3px;
}

.button--primary {
  color: var(--branco);
  background: linear-gradient(135deg, var(--azul-principal), var(--azul-medio));
  box-shadow: 0 20px 46px rgba(0, 92, 255, 0.34);
}

.button--ghost {
  color: var(--branco);
  border-color: var(--borda);
  background: rgba(255, 255, 255, 0.05);
}

.button--white {
  color: #042047;
  background: var(--branco);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.hero__features article {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--borda);
  border-radius: 22px;
  background: rgba(7, 18, 36, 0.78);
}

.hero__features span {
  display: block;
  margin-bottom: 16px;
  color: var(--azul-claro);
  font-size: 0.78rem;
  font-weight: 950;
}

.hero__features strong {
  display: block;
  color: var(--branco);
  line-height: 1.25;
}

.hero__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
}

.profile-preview {
  position: relative;
  width: min(100%, 430px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: #F8FAFC;
  color: #0E1726;
  box-shadow: var(--sombra), 0 0 0 10px rgba(255, 255, 255, 0.04);
  transform: rotate(1.5deg);
}

.profile-preview::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(0, 92, 255, 0.32), rgba(20, 200, 255, 0.08));
}

.preview__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview__search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid #E2E8F0;
  border-radius: 999px;
  background: #FFFFFF;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 750;
}

.google-letter {
  font-weight: 950;
  font-size: 1.1rem;
}

.google-letter--blue {
  color: #4285F4;
}

.preview__pin {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #EA4335;
  box-shadow: 0 12px 24px rgba(234, 67, 53, 0.24);
}

.preview__pin::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--branco);
}

.preview__map {
  position: relative;
  height: 185px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(100, 116, 139, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(100, 116, 139, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, #EAF2FB, #D7E4F2);
  background-size: 30px 30px, 30px 30px, auto;
}

.map-road {
  position: absolute;
  height: 7px;
  border-radius: 99px;
  background: rgba(66, 133, 244, 0.36);
}

.map-road--a {
  width: 210px;
  left: 20px;
  top: 58px;
  transform: rotate(14deg);
}

.map-road--b {
  width: 210px;
  right: -18px;
  top: 110px;
  transform: rotate(-22deg);
}

.map-road--c {
  width: 140px;
  left: 72px;
  bottom: 38px;
  transform: rotate(42deg);
}

.map-marker {
  position: absolute;
  left: 55%;
  top: 42%;
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: #EA4335;
  transform: rotate(-45deg);
  box-shadow: 0 12px 22px rgba(234, 67, 53, 0.32);
}

.map-marker::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: white;
}

.preview__business {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid #E2E8F0;
  border-radius: 22px;
  background: var(--branco);
}

.preview__business h2 {
  color: #0F172A;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.preview__business p {
  margin-top: 4px;
  color: #64748B;
  font-size: 0.92rem;
}

.preview__business span {
  color: #F59E0B;
  font-weight: 950;
  white-space: nowrap;
}

.preview__actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 14px;
}

.preview__actions span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #EAF3FF;
  color: #005CFF;
  font-size: 0.78rem;
  font-weight: 950;
}

.preview__photos {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 10px;
  margin-top: 14px;
}

.preview__photos div {
  position: relative;
  height: 105px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0, 92, 255, 0.22), rgba(20, 200, 255, 0.16)),
    linear-gradient(135deg, #1D3557, #08172D);
}

.preview__photos small {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(2, 8, 23, 0.76);
  color: var(--branco);
  font-size: 0.7rem;
  font-weight: 800;
}

.growth-card {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: 270px;
  padding: 22px;
  border: 1px solid rgba(20, 200, 255, 0.30);
  border-radius: 24px;
  background: rgba(2, 8, 23, 0.92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.growth-card p {
  color: var(--azul-claro);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.growth-card strong {
  display: block;
  margin-top: 8px;
  color: var(--branco);
  font-size: 1.05rem;
  line-height: 1.25;
}

.trust {
  position: relative;
  z-index: 2;
  margin-top: -38px;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  background: #061123;
  box-shadow: var(--sombra);
  overflow: hidden;
}

.trust article {
  padding: 24px;
}

.trust article + article {
  border-left: 1px solid var(--borda);
}

.trust strong,
.trust span {
  display: block;
}

.trust strong {
  color: var(--branco);
  font-size: 1rem;
}

.trust span {
  margin-top: 6px;
  color: var(--cinza-texto);
  font-size: 0.92rem;
}

.section {
  padding: 108px 0;
}

.section--problem {
  background: linear-gradient(180deg, transparent, rgba(0, 92, 255, 0.04), transparent);
}

.split,
.benefits,
.proof__grid,
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.section__copy h2,
.section__heading h2 {
  margin-top: 10px;
}

.section__copy p,
.section__heading p {
  margin-top: 18px;
}

.section__heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section__heading .tag {
  justify-content: center;
}

.audit-card {
  padding: 28px;
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  background: #061123;
  box-shadow: var(--sombra);
}

.audit-card__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.audit-card strong {
  color: var(--branco);
  font-size: 1.2rem;
}

.audit-card span {
  color: var(--azul-claro);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-card ul,
.checks {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audit-card li,
.checks li {
  position: relative;
  padding-left: 32px;
  color: var(--cinza-claro);
}

.audit-card li::before,
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 200, 255, 0.14);
  color: var(--azul-claro);
  font-size: 0.78rem;
  font-weight: 950;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service {
  min-height: 258px;
  padding: 28px;
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  background: #061123;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.service:hover {
  transform: translateY(-6px);
  border-color: var(--borda-azul);
  background: #08162D;
  box-shadow: 0 28px 70px rgba(0, 92, 255, 0.14);
}

.service__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--branco);
  background: linear-gradient(135deg, var(--azul-principal), var(--azul-medio));
  box-shadow: 0 16px 38px rgba(0, 92, 255, 0.28);
  font-weight: 950;
}

.service p {
  margin-top: 12px;
  color: var(--cinza-texto);
}

.benefits {
  align-items: center;
}

.benefits__visual {
  display: grid;
  gap: 16px;
}

.photo-card {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: end center;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--borda);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 92, 255, 0.08)),
    linear-gradient(135deg, #17345B, #071224 62%);
  box-shadow: var(--sombra);
}

.photo-card__label {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--branco);
  background: rgba(2, 8, 23, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
}

.store {
  position: relative;
  width: min(100%, 440px);
  height: 180px;
  display: grid;
  grid-template-columns: 1fr 0.6fr 1fr;
  gap: 10px;
  padding: 64px 18px 18px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(180deg, #101D31, #050B14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
}

.store span {
  position: absolute;
  inset: 18px 18px auto;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--branco);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 950;
}

.store i {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px 10px 0 0;
  background: linear-gradient(135deg, rgba(20, 200, 255, 0.26), rgba(0, 92, 255, 0.08));
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.metric-list article {
  padding: 22px;
  border: 1px solid var(--borda);
  border-radius: 22px;
  background: #061123;
}

.metric-list span {
  color: var(--azul-claro);
  font-size: 0.78rem;
  font-weight: 950;
}

.metric-list strong {
  display: block;
  margin-top: 6px;
  color: var(--branco);
  font-size: 1.12rem;
}

.metric-list p {
  margin-top: 8px;
  color: var(--cinza-texto);
  font-size: 0.92rem;
}

.checks {
  margin-top: 28px;
}

.process {
  background: linear-gradient(180deg, rgba(0, 92, 255, 0.035), transparent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  background: #061123;
}

.step::after {
  content: "";
  position: absolute;
  top: 56px;
  right: -19px;
  width: 20px;
  height: 1px;
  background: var(--borda-azul);
}

.step:last-child::after {
  display: none;
}

.step span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--branco);
  background: linear-gradient(135deg, var(--azul-principal), var(--azul-medio));
  font-size: 1.15rem;
  font-weight: 950;
}

.step p {
  margin-top: 10px;
  color: var(--cinza-texto);
}

.proof {
  background: linear-gradient(180deg, transparent, rgba(7, 18, 36, 0.58), transparent);
}

.proof-panel {
  display: grid;
  gap: 14px;
}

.proof-panel article {
  padding: 24px;
  border: 1px solid var(--borda);
  border-radius: 22px;
  background: #061123;
}

.proof-panel strong,
.proof-panel span {
  display: block;
}

.proof-panel strong {
  color: var(--branco);
  font-size: 1.1rem;
}

.proof-panel span {
  margin-top: 8px;
  color: var(--cinza-texto);
}

.regions__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.regions__tags span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--borda);
  border-radius: 999px;
  background: #061123;
  color: var(--cinza-claro);
  font-weight: 850;
}

.faq__grid {
  align-items: start;
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--borda);
  border-radius: 18px;
  background: #061123;
  overflow: hidden;
}

.faq summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  color: var(--branco);
  font-weight: 950;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 92, 255, 0.18);
  color: var(--azul-claro);
  transform: translateY(-50%);
  transition: transform var(--ease);
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq details p {
  padding: 0 22px 22px;
  color: var(--cinza-texto);
}

.final-cta {
  padding: 70px 0;
}

.final-cta__card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 12%, rgba(20, 200, 255, 0.20), transparent 34%),
    linear-gradient(135deg, var(--azul-principal), #0044CC);
  box-shadow: 0 34px 90px rgba(0, 92, 255, 0.28);
}

.final-cta h2 {
  max-width: 820px;
}

.final-cta p:not(.tag) {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
}

.footer {
  padding: 70px 0 24px;
  border-top: 1px solid var(--borda);
  background: #020817;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.75fr 0.75fr;
  gap: 34px;
}

.footer__logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 50%;
  background: #000;
}

.footer p {
  max-width: 430px;
  margin-top: 20px;
  color: var(--cinza-texto);
}

.footer h2 {
  margin: 0 0 16px;
  color: var(--branco);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.footer a,
.footer span {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: var(--cinza-texto);
  font-size: 0.94rem;
  transition: color var(--ease);
}

.footer a:hover {
  color: var(--azul-claro);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--borda);
  color: rgba(159, 179, 200, 0.72);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--branco);
  box-shadow: 0 20px 48px rgba(37, 211, 102, 0.32);
  transition: transform var(--ease), box-shadow var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(37, 211, 102, 0.42);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: 100ms;
}

.reveal--delay-2 {
  transition-delay: 180ms;
}

.reveal--delay-3 {
  transition-delay: 260ms;
}

@media (max-width: 1060px) {
  .nav a {
    padding-inline: 9px;
    font-size: 0.84rem;
  }

  .hero__grid,
  .split,
  .benefits,
  .proof__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .hero__media {
    min-height: 620px;
  }

  .trust__grid,
  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust article + article {
    border-left: 0;
  }

  .trust article:nth-child(2) {
    border-left: 1px solid var(--borda);
  }

  .trust article:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--borda);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step::after {
    display: none;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  :root {
    --header: 78px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: fixed;
    top: var(--header);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--borda);
    border-radius: 22px;
    background: rgba(2, 8, 23, 0.96);
    box-shadow: var(--sombra);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px !important;
    border-radius: 14px;
  }

  .nav__button {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: 0;
    padding: calc(var(--header) + 56px) 0 78px;
  }

  .hero__features {
    grid-template-columns: 1fr;
  }

  .hero__media {
    min-height: 610px;
  }

  .profile-preview {
    width: min(100%, 390px);
    transform: none;
  }

  .growth-card {
    right: 50%;
    bottom: 0;
    width: min(92%, 330px);
    transform: translateX(50%);
  }

  .section {
    padding: 78px 0;
  }

  .section__heading {
    text-align: left;
  }

  .section__heading .tag {
    justify-content: flex-start;
  }

  .trust__grid,
  .services,
  .steps,
  .metric-list,
  .final-cta__card {
    grid-template-columns: 1fr;
  }

  .trust article:nth-child(2),
  .trust article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--borda);
    grid-column: auto;
  }

  .final-cta__card {
    align-items: start;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.48rem, 12vw, 4rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .preview__actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview__photos {
    grid-template-columns: 1fr;
  }

  .preview__photos div {
    height: 82px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   V12 - JS First + CSS Fallback Animation System
   - JS é a opção principal.
   - Se JS externo falhar, CSS fallback assume.
   - Se JS estiver desligado, CSS fallback também anima.
   ========================================================= */

html:not(.js-animate) .reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: nsFallbackReveal 720ms cubic-bezier(.2, .8, .2, 1) both !important;
}

html:not(.js-animate) .reveal--delay {
  animation-delay: 90ms !important;
}

html:not(.js-animate) .reveal--delay-2 {
  animation-delay: 160ms !important;
}

html:not(.js-animate) .reveal--delay-3 {
  animation-delay: 230ms !important;
}

html.js-animate:not(.js-fallback) .reveal {
  opacity: 0 !important;
  transform: translate3d(0, 24px, 0) scale(.985) !important;
  filter: none !important;
  animation: none !important;
  transition:
    opacity 720ms cubic-bezier(.2, .8, .2, 1),
    transform 720ms cubic-bezier(.2, .8, .2, 1) !important;
  will-change: opacity, transform;
}

html.js-animate:not(.js-fallback) .reveal.is-visible {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
}

html.js-animate.js-fallback .reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: nsFallbackReveal 720ms cubic-bezier(.2, .8, .2, 1) both !important;
}

html.js-animate.js-fallback .reveal--delay {
  animation-delay: 90ms !important;
}

html.js-animate.js-fallback .reveal--delay-2 {
  animation-delay: 160ms !important;
}

html.js-animate.js-fallback .reveal--delay-3 {
  animation-delay: 230ms !important;
}

html.js-animate:not(.js-fallback) .hero__content.reveal {
  transform: translate3d(-24px, 16px, 0) scale(.99) !important;
}

html.js-animate:not(.js-fallback) .hero__content.reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1) !important;
}

html.js-animate:not(.js-fallback) .hero__media.reveal {
  transform: translate3d(24px, 18px, 0) scale(.98) !important;
}

html.js-animate:not(.js-fallback) .hero__media.reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1) !important;
}

.hero__line--one {
  animation: nsLineMotionOne 7s ease-in-out infinite !important;
}

.hero__line--two {
  animation: nsLineMotionTwo 8s ease-in-out infinite reverse !important;
}

.preview__pin,
.map-marker {
  animation: nsPinSoftPulse 2.8s ease-in-out infinite !important;
}

.whatsapp-float {
  animation: nsWhatsappSoftPulse 3.2s ease-in-out infinite !important;
}

.button,
.service,
.hero__features article,
.audit-card,
.metric-list article,
.step,
.regions__tags span,
.faq details,
.trust article,
.profile-preview,
.preview__actions span,
.preview__photos div,
.footer a,
.service__icon,
.step span {
  transition:
    transform 240ms cubic-bezier(.2, .8, .2, 1),
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease,
    color 240ms ease,
    filter 240ms ease !important;
}

.button {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
}

.button::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  display: block !important;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.22) 45%, transparent 72%) !important;
  transform: translateX(-125%) !important;
  transition: transform 650ms ease !important;
}

.button:hover {
  transform: translate3d(0, -3px, 0) !important;
}

.button:hover::before {
  transform: translateX(125%) !important;
}

.button:hover svg {
  transform: translateX(4px) !important;
}

.service:hover,
.hero__features article:hover,
.audit-card:hover,
.metric-list article:hover,
.step:hover,
.trust article:hover {
  transform: translate3d(0, -6px, 0) !important;
  border-color: var(--borda-azul) !important;
  box-shadow: 0 20px 46px rgba(0, 92, 255, 0.14) !important;
}

.service:hover .service__icon,
.step:hover span {
  transform: scale(1.04) rotate(-3deg) !important;
  box-shadow: 0 16px 34px rgba(0, 92, 255, 0.30) !important;
}

.profile-preview:hover {
  transform: translate3d(0, -6px, 0) rotate(0deg) !important;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34), 0 0 0 7px rgba(0, 92, 255, 0.07) !important;
}

.preview__actions span:hover,
.preview__photos div:hover {
  transform: translate3d(0, -3px, 0) !important;
  filter: brightness(1.05) !important;
}

.regions__tags span:hover {
  transform: translate3d(0, -3px, 0) !important;
  border-color: var(--borda-azul) !important;
}

.faq details:hover,
.faq details[open] {
  transform: translate3d(0, -2px, 0) !important;
  border-color: var(--borda-azul) !important;
  box-shadow: 0 14px 34px rgba(0, 92, 255, 0.11) !important;
}

.footer a:hover {
  transform: translate3d(3px, 0, 0) !important;
  color: var(--azul-claro) !important;
}

@keyframes nsFallbackReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes nsLineMotionOne {
  0%, 100% {
    transform: rotate(-18deg) translateX(0);
    opacity: .45;
  }

  50% {
    transform: rotate(-18deg) translateX(-24px);
    opacity: .74;
  }
}

@keyframes nsLineMotionTwo {
  0%, 100% {
    transform: rotate(-18deg) translateX(0);
    opacity: .32;
  }

  50% {
    transform: rotate(-18deg) translateX(20px);
    opacity: .58;
  }
}

@keyframes nsPinSoftPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(234, 67, 53, .26);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(234, 67, 53, 0);
  }
}

@keyframes nsWhatsappSoftPulse {
  0%, 100% {
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.30);
  }

  50% {
    box-shadow: 0 18px 52px rgba(37, 211, 102, 0.42);
  }
}

@media (max-width: 860px) {
  html.js-animate:not(.js-fallback) .reveal {
    transform: translate3d(0, 18px, 0) scale(.99) !important;
    transition-duration: 540ms !important;
  }

  html.js-animate:not(.js-fallback) .reveal.is-visible {
    transform: translate3d(0, 0, 0) scale(1) !important;
  }

  .service:hover,
  .hero__features article:hover,
  .audit-card:hover,
  .metric-list article:hover,
  .step:hover,
  .trust article:hover,
  .profile-preview:hover {
    transform: translate3d(0, -3px, 0) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__line--one,
  .hero__line--two,
  .preview__pin,
  .map-marker,
  .whatsapp-float {
    animation-duration: 5s !important;
  }
}
