:root {
  --nr-primary: #1a304f;   /* azul principal */
  --nr-secondary: #ff9502; /* laranja */
  --nr-bg: #0b1727;
  --nr-bg-soft: #111d31;
  --nr-text: #0f172a;
  --nr-muted: #64748b;
  --nr-radius-lg: 24px;
  --nr-radius-md: 16px;
  --nr-shadow-soft: 0 22px 45px rgba(10, 21, 40, 0.35);
  --nr-shadow-card: 0 18px 40px rgba(15, 23, 42, 0.22);
  --nr-transition-fast: 0.18s ease-out;
}

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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--nr-text);
  background:
    radial-gradient(circle at top left, rgba(255, 149, 2, 0.12), transparent 55%),
    radial-gradient(circle at bottom right, rgba(26, 48, 79, 0.85), #060b14);
  -webkit-font-smoothing: antialiased;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px clamp(16px, 4vw, 40px);
}

/* HEADER -------------------------------------------------------------- */
.page-header {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 32px auto;
  padding-top: 4px;
}

.page-header__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

/* logo bem visível, responsivo */
.page-header__logo-img {
  display: block;
  max-width: clamp(210px, 24vw, 300px); /* ajusta o range se quiser maior/menor */
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55));
}

/* slogan em HTML, sem repetir dentro da arte */
.page-header__tagline {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.9);
  font-weight: 500;
}

/* mobile */
@media (max-width: 600px) {
  .page-header {
    margin-bottom: 20px;
  }

  .page-header__logo-img {
    max-width: 220px;
  }

  .page-header__tagline {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
}


/* MAIN LAYOUT --------------------------------------------------------- */
.page-main {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: stretch;
}

@media (max-width: 900px) {
  .page-main {
    grid-template-columns: 1fr;
  }
}

/* CARD PRINCIPAL (texto) ---------------------------------------------- */
.hero-card {
  background: #ffffff;
  border-radius: var(--nr-radius-lg);
  padding: clamp(24px, 4vw, 32px);
  box-shadow: var(--nr-shadow-card);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 149, 2, 0.09), transparent 55%),
    radial-gradient(circle at bottom left, rgba(26, 48, 79, 0.16), transparent 50%);
  pointer-events: none;
}

.hero-card__content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nr-primary);
  background: rgba(26, 48, 79, 0.06);
  margin-bottom: 16px;
}

.hero-badge__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--nr-secondary);
  box-shadow: 0 0 0 0 rgba(255, 149, 2, 0.7);
  animation: badge-pulse 1.7s infinite;
}

@keyframes badge-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 149, 2, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 149, 2, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 149, 2, 0);
  }
}

.hero-title {
  font-size: clamp(1.9rem, 3.1vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 14px 0;
  color: var(--nr-primary);
  font-weight: 700;
}

.hero-title span {
  color: var(--nr-secondary);
}

.hero-subtitle {
  margin: 0 0 18px 0;
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--nr-muted);
  max-width: 9840px;
  text-align: justify;
  text-justify: inter-word;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: grid;
  gap: 10px;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #1e293b;
}

.hero-list__icon {
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(26, 48, 79, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--nr-secondary);
}

/* CONTATO ------------------------------------------------------------- */
.contact-block {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding-top: 18px;
  margin-top: 6px;
  display: grid;
  gap: 12px;
}

.contact-block__title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--nr-primary);
  margin: 0;
}

.contact-block__text {
  font-size: 0.9rem;
  color: var(--nr-muted);
  margin: 0;
  text-align: justify;
  text-justify: inter-word; /* opcional */
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
  justify-content: center;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--nr-transition-fast),
    color var(--nr-transition-fast),
    transform 0.12s ease-out,
    box-shadow 0.12s ease-out,
    border-color var(--nr-transition-fast);
  text-decoration: none;
  white-space: nowrap;
  gap: 8px;
}

.btn--primary {
  background: var(--nr-secondary);
  color: #111827;
  box-shadow: 0 14px 28px rgba(255, 149, 2, 0.25);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 36px rgba(255, 149, 2, 0.28);
  background: #ffa733;
}

.btn--ghost {
  background: rgba(15, 23, 42, 0.02);
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--nr-primary);
}

.btn--ghost:hover {
  background: rgba(26, 48, 79, 0.06);
  border-color: rgba(26, 48, 79, 0.8);
}

.btn__icon {
  font-size: 1rem;
  line-height: 1;
}

.contact-email {
  font-size: 0.86rem;
  color: var(--nr-muted);
}

.contact-email a {
  color: var(--nr-primary);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.contact-email a:hover {
  color: var(--nr-secondary);
}

/* ASIDE: STATUS / ILUSTRAÇÃO ----------------------------------------- */
.status-card {
  position: relative;
  border-radius: var(--nr-radius-lg);
  padding: 22px 22px 24px 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 149, 2, 0.1), transparent 55%),
    linear-gradient(135deg, #111827, #0b1727);
  color: #e5e7eb;
  box-shadow: var(--nr-shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  isolation: isolate;
}

.status-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffb341, #ff9502);
  opacity: 0.16;
  filter: blur(1px);
  bottom: -60px;
  right: -40px;
  transform: translate3d(0, 0, 0);
  animation: float-orb 8s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes float-orb {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-18px, -14px, 0);
  }
}

.status-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(148, 163, 184, 0.85);
  font-weight: 600;
}

.status-card__title {
  margin: 2px 0 4px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f9fafb;
}

.status-card__subtitle {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(209, 213, 219, 0.9);
}

.status-progress {
  margin-top: 8px;
}

.status-progress__label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(209, 213, 219, 0.9);
  margin-bottom: 6px;
}

.status-progress__bar {
  position: relative;
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.status-progress__bar-inner {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff9502, #ffd970);
  transform-origin: left center;
  transform: scaleX(0.78);
  animation: progress-pulse 2.4s ease-in-out infinite alternate;
}

@keyframes progress-pulse {
  0% {
    transform: scaleX(0.72);
  }
  100% {
    transform: scaleX(0.82);
  }
}

.status-steps {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.status-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(209, 213, 219, 0.94);
}

.status-step__bullet {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-step__bullet--done {
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #22c55e;
}

.status-step__bullet--current {
  background: rgba(255, 149, 2, 0.12);
  border: 1px solid rgba(255, 149, 2, 0.9);
  color: #fed7aa;
}

.status-step__bullet--next {
  background: transparent;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  color: rgba(148, 163, 184, 0.85);
}

.status-step__label {
  font-weight: 500;
}

.status-step__hint {
  color: rgba(148, 163, 184, 0.85);
  font-weight: 400;
}

.status-footer {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed rgba(55, 65, 81, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.9);
}

.status-pill {
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: badge-pulse 1.9s infinite;
}

/* FOOTER -------------------------------------------------------------- */
/* FOOTER -------------------------------------------------------------- */
.page-footer {
  max-width: 1200px;
  width: 100%;
  margin: 30px auto 0 auto;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.92);
  display: flex;
  justify-content: space-between;
  align-items: center;           /* 🔹 só adicionei isso */
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(15, 23, 42, 0.65);
  padding-top: 12px;
}

.page-footer__brand {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: rgba(203, 213, 225, 0.92);
}

.page-footer__brand span {
  color: #e5e7eb;
  font-weight: 500;
}

.page-footer__motto {
  color: rgba(203, 213, 225, 0.9);
}

/* 🔹 bloco novo: link de documentos */
.page-footer__links {
  display: flex;
  align-items: center;
}

.page-footer__link {
  font-size: 0.78rem;
  color: rgba(203, 213, 225, 0.95);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  cursor: pointer;
}

.page-footer__link:hover {
  color: var(--nr-secondary); /* laranja da NR */
}

/* MOBILE -------------------------------------------------------------- */
@media (max-width: 600px) {
  .page-header {
    margin-bottom: 20px;
  }

  .page-header__logo img {
    height: 44px;
  }

  .page-footer {
    margin-top: 22px;
  }
}

/* BLOCO DE DOWNLOAD DO APLICATIVO --------------------------------------- */

.app-downloads {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 149, 2, 0.12),
    rgba(255, 255, 255, 0.9)
  );
  border: 1px solid rgba(255, 149, 2, 0.18);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
}

.app-downloads__info {
  flex: 1 1 220px;
  min-width: 0;
}

.app-downloads__title {
  margin: 0 0 4px 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--nr-primary);
}

.app-downloads__text {
  margin: 0;
  font-size: 0.86rem;
  color: var(--nr-muted);
}

.app-downloads__stores {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* chips das lojas (Google Play / App Store) */

.store-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  font-size: 0.78rem;
  cursor: pointer;
  transition:
    transform 0.12s ease-out,
    box-shadow 0.12s ease-out,
    border-color 0.12s ease-out,
    background-color 0.12s ease-out;
}

.store-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
  border-color: rgba(26, 48, 79, 0.2);
  background: #fefefe;
}

.store-chip__icon {
  width: 24px;
  height: 24px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Google Play: usa laranja como acento */
.store-chip--google .store-chip__icon {
  background: rgba(255, 149, 2, 0.14);
  color: #ff9502;
}

/* Apple: usa azul como acento */
.store-chip--apple .store-chip__icon {
  background: rgba(26, 48, 79, 0.08);
  color: var(--nr-primary);
}

.store-chip__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-chip__overline {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(100, 116, 139, 0.9);
}

.store-chip__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--nr-primary);
}

/* Responsivo: empilha tudo bonitinho em telas menores */
@media (max-width: 600px) {
  .app-downloads {
    padding: 14px 14px;
  }

  .app-downloads__stores {
    width: 100%;
  }

  .store-chip {
    flex: 1 1 150px;
    justify-content: center;
  }
}
