:root {
  color-scheme: dark;
  --bg: #020204;
  --ink: #f8fbff;
  --text: #f1f4f8;
  --soft: #d6dde6;
  --muted: #94a0ad;
  --faint: #687382;
  --glass: rgba(17, 19, 26, 0.62);
  --glass-strong: rgba(24, 27, 36, 0.82);
  --glass-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.25);
  --cyan: #88e7ff;
  --cyan-2: #4cc8ff;
  --violet: #a989ff;
  --gold: #e5be72;
  --rose: #ff7aaf;
  --red: #ff6575;
  --green: #68e2a1;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  --glow: 0 0 40px rgba(136, 231, 255, 0.18);
  --radius-xl: 42px;
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --pill: 999px;
  --max: 1120px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  margin: 0;
  background:
    linear-gradient(115deg, rgba(136, 231, 255, 0.16), transparent 28%),
    linear-gradient(245deg, rgba(229, 190, 114, 0.12), transparent 34%),
    linear-gradient(180deg, #07080d 0%, #020204 48%, #06070b 100%);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 96px),
    linear-gradient(135deg, transparent 0 35%, rgba(136, 231, 255, 0.06) 35% 36%, transparent 36% 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.2));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 18%, rgba(255, 255, 255, 0.018));
  pointer-events: none;
}

::selection {
  background: var(--cyan);
  color: #020204;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: rgba(5, 6, 10, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.2);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 7px 15px 7px 8px;
  border-radius: var(--pill);
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark img {
  width: 52px;
  height: 34px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(136, 231, 255, 0.2));
}

.brand-mark span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  color: var(--soft);
  font-size: 13px;
  font-weight: 760;
  overflow: hidden;
}

.site-nav a::before,
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 32%, rgba(255, 255, 255, 0.28) 45%, transparent 60% 100%);
  transform: translateX(-140%);
  transition: transform 650ms ease;
}

.site-nav a:hover::before,
.button:hover::before {
  transform: translateX(140%);
}

.site-nav a:hover {
  border-color: rgba(136, 231, 255, 0.36);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: var(--pill);
  background: currentColor;
}

main {
  position: relative;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
  align-items: center;
  width: min(100% - 32px, var(--max));
  min-height: 76svh;
  margin: -20px auto 0;
  padding: 58px 0 64px;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(82vw, 820px);
  aspect-ratio: 1;
  background-image: url("/logo_np_transparente.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.19;
  filter: saturate(0.88) contrast(1.12);
  transform: translate(-54%, -48%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 60px -4px 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 64px;
  background:
    linear-gradient(110deg, rgba(136, 231, 255, 0.08), transparent 22% 72%, rgba(229, 190, 114, 0.08)),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), var(--glow);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 88px 28px 72px;
  border-radius: 56px;
  background:
    linear-gradient(90deg, transparent, rgba(136, 231, 255, 0.16), transparent),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 22px);
  opacity: 0.55;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.hero-copy,
.quote-surface {
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding-left: 10px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 16px;
  padding: 6px 13px;
  border: 1px solid rgba(136, 231, 255, 0.28);
  border-radius: var(--pill);
  background: rgba(136, 231, 255, 0.08);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 5.35rem;
  line-height: 0.86;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 0 46px rgba(136, 231, 255, 0.12);
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 2.55rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 650px;
  color: var(--soft);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 11px 17px;
  border: 1px solid var(--line-strong);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(136, 231, 255, 0.6);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34), 0 0 32px rgba(136, 231, 255, 0.16);
}

.button.primary {
  border-color: rgba(255, 255, 255, 0.55);
  background: linear-gradient(135deg, #f8fdff, #97ebff 48%, #e8c57d);
  color: #05060a;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.055);
}

.button.full {
  width: 100%;
}

.button.small {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 13px;
}

.button.danger {
  border-color: rgba(255, 101, 117, 0.55);
  color: #ffd6dc;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 720px;
  margin: 0;
}

.signal-row div {
  min-height: 78px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.signal-row dt {
  color: var(--muted);
  font-size: 12px;
}

.signal-row dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-weight: 850;
}

.quote-surface,
.login-panel,
.login-brand,
.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    var(--glass);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px) saturate(1.12);
}

.quote-surface {
  padding: 14px;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.form-title {
  padding: 8px 6px 2px;
}

.form-title h2 {
  margin-bottom: 7px;
  font-size: 1.72rem;
}

.form-title p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

label {
  display: grid;
  gap: 7px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(3, 4, 8, 0.72);
  color: var(--text);
  padding: 11px 13px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(136, 231, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(136, 231, 255, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-alert,
.admin-error {
  border: 1px solid rgba(255, 101, 117, 0.42);
  border-radius: var(--radius-md);
  background: rgba(255, 101, 117, 0.12);
  color: #ffd9de;
  padding: 13px;
}

.form-alert p,
.admin-error p {
  margin: 0;
}

.upload-drop {
  position: relative;
  display: grid;
  gap: 10px;
}

.upload-drop input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-drop > label {
  min-height: 108px;
  justify-items: center;
  align-content: center;
  border: 1px dashed rgba(136, 231, 255, 0.58);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(136, 231, 255, 0.11), rgba(169, 137, 255, 0.08), rgba(229, 190, 114, 0.08)),
    rgba(255, 255, 255, 0.045);
  text-align: center;
}

.upload-drop strong {
  font-size: 15px;
}

.upload-drop span {
  max-width: 320px;
  color: var(--muted);
  font-size: 12px;
}

.file-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 12px;
}

.craft-band,
.vitrine-band,
.reviews-band,
.seo-band,
.faq-band,
.simple-page,
.product-page {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 62px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 22px;
}

.section-head p {
  color: var(--muted);
  font-size: 0.98rem;
}

.section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  max-width: none;
}

.process-grid,
.product-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article,
.product-card,
.faq-grid details,
.empty-showcase,
.keyword-panel,
.contact-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(11, 13, 19, 0.66);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.process-grid article::after,
.product-card::after,
.faq-grid details::after,
.keyword-panel::after,
.contact-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(136, 231, 255, 0.14), transparent 32%, rgba(229, 190, 114, 0.1));
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.process-grid article:hover::after,
.product-card:hover::after,
.faq-grid details:hover::after,
.keyword-panel:hover::after,
.contact-panel:hover::after {
  opacity: 1;
}

.process-grid article {
  min-height: 198px;
  padding: 20px;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 34px;
  border: 1px solid rgba(229, 190, 114, 0.5);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
  background: rgba(229, 190, 114, 0.08);
}

.process-grid p,
.faq-grid p,
.empty-showcase p,
.keyword-panel p,
.contact-panel p {
  color: var(--muted);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
}

.product-open {
  display: grid;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  border-radius: inherit;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.product-open:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -4px;
}

.product-media {
  display: block;
  aspect-ratio: 1;
  margin: 10px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(136, 231, 255, 0.08), transparent 46%, rgba(229, 190, 114, 0.08)),
    rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 500ms ease, filter 500ms ease;
}

.product-card:hover .product-media img {
  filter: saturate(1.12);
}

.product-body {
  display: grid;
  gap: 8px;
  padding: 4px 16px 16px;
}

.product-body strong {
  min-height: 36px;
  color: var(--ink);
}

.product-body em {
  color: var(--cyan);
  font-style: normal;
  font-weight: 900;
}

.product-body span {
  color: var(--muted);
  font-size: 13px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-body small {
  display: inline-flex;
  width: max-content;
  margin-top: 4px;
  border-bottom: 1px solid rgba(136, 231, 255, 0.45);
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.empty-showcase {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 24px;
}

.seo-band {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 16px;
}

.keyword-panel,
.contact-panel {
  padding: 24px;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.keyword-cloud a {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--pill);
  padding: 9px 12px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.055);
}

.keyword-cloud a:hover {
  border-color: rgba(136, 231, 255, 0.48);
  color: var(--cyan);
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-action {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-action:hover {
  transform: translateY(-2px);
  border-color: rgba(136, 231, 255, 0.45);
  background: rgba(255, 255, 255, 0.075);
}

.contact-action.primary {
  border-color: rgba(136, 231, 255, 0.42);
  box-shadow: 0 0 34px rgba(136, 231, 255, 0.08);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8fdff, #92eaff 48%, #e8c57d);
  color: #030407;
  font-weight: 950;
}

.contact-action span:last-child {
  display: grid;
  gap: 1px;
}

.contact-action strong {
  color: var(--ink);
}

.contact-action em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  overflow-wrap: anywhere;
}

.faq-grid details {
  padding: 17px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.simple-page {
  min-height: 62svh;
  max-width: 920px;
}

.simple-page h1 {
  font-size: 3.45rem;
}

.showcase-page {
  max-width: var(--max);
}

.showcase-page > p {
  max-width: 760px;
}

.showcase-page .product-grid {
  margin-top: 26px;
}

.process-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0;
}

.process-grid.compact article {
  min-height: 145px;
}

.process-grid.compact span {
  margin-bottom: 20px;
}

.product-page {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 28px;
  align-items: center;
}

.product-photo {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.product-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-info .price {
  display: block;
  margin: 20px 0;
  color: var(--cyan);
  font-size: 1.8rem;
}

.product-modal[hidden] {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(136, 231, 255, 0.14), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(229, 190, 114, 0.12), transparent 28%),
    rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(18px) saturate(1.12);
}

.product-modal-panel {
  position: relative;
  display: grid;
  width: min(880px, calc(100vw - 32px));
  max-height: min(900px, calc(100svh - 36px));
  border: 1px solid var(--line-strong);
  border-radius: 38px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(9, 10, 15, 0.94);
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.72), 0 0 70px rgba(136, 231, 255, 0.12);
  overflow: auto;
}

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(4, 5, 9, 0.72);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.product-modal-media {
  margin: 12px 12px 0;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(136, 231, 255, 0.1), transparent 42%, rgba(229, 190, 114, 0.09)),
    rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.product-modal-media img {
  width: 100%;
  height: min(58svh, 540px);
  min-height: 280px;
  object-fit: contain;
}

.product-modal-content {
  display: grid;
  gap: 12px;
  padding: 24px clamp(20px, 4vw, 38px) 32px;
}

.product-modal-content h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.85rem, 4vw, 3.7rem);
  line-height: 0.95;
}

.product-modal-content p:not(.eyebrow) {
  max-width: 68ch;
  margin: 0;
  color: var(--soft);
}

.product-modal-content strong {
  color: var(--cyan);
  font-size: 1.45rem;
}

.product-modal-content .button {
  width: max-content;
}

body.modal-open {
  overflow: hidden;
}

.reviews-band {
  overflow: hidden;
}

.review-marquee {
  position: relative;
  overflow: hidden;
  margin-inline: calc((100vw - min(100vw - 32px, var(--max))) / -2);
  padding: 4px 0 18px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.review-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: noble-review-loop 34s linear infinite;
}

.review-marquee:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  flex: 0 0 min(390px, calc(100vw - 54px));
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(11, 13, 19, 0.68);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.review-rating {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  width: max-content;
  border: 1px solid rgba(229, 190, 114, 0.38);
  border-radius: var(--pill);
  padding: 7px 11px;
  background: rgba(229, 190, 114, 0.1);
  color: var(--gold);
}

.review-rating span {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
}

.review-rating strong {
  font-size: 12px;
}

.review-card p {
  margin: 0;
  color: var(--soft);
  font-size: 1rem;
}

.review-card footer {
  color: var(--cyan);
  font-weight: 850;
}

@keyframes noble-review-loop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto 24px;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(8, 9, 14, 0.74);
  color: var(--muted);
  text-align: center;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.footer-legal {
  display: grid;
  gap: 5px;
  justify-items: center;
}

.site-footer strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.site-footer p {
  margin: 0;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 10px;
}

.footer-contact a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.footer-contact a:hover {
  transform: translateY(-2px);
  border-color: rgba(136, 231, 255, 0.45);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26), 0 0 22px rgba(136, 231, 255, 0.14);
}

.footer-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(136, 231, 255, 0.95), rgba(229, 190, 114, 0.95));
  color: #030407;
  font-size: 14px;
  font-weight: 950;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.site-footer nav a {
  border: 1px solid var(--line);
  border-radius: var(--pill);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
}

.woot-widget-bubble,
.woot--bubble-holder .woot-widget-bubble {
  border: 1px solid rgba(255, 255, 255, 0.42) !important;
  border-radius: var(--pill) !important;
  background:
    linear-gradient(135deg, #f8fdff, #92eaff 48%, #e8c57d) !important;
  color: #030407 !important;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.38),
    0 0 42px rgba(136, 231, 255, 0.3) !important;
  overflow: hidden !important;
}

.woot-widget-bubble::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(115deg, transparent 0 30%, rgba(255, 255, 255, 0.45) 45%, transparent 62% 100%) !important;
  transform: translateX(-130%) !important;
  animation: noble-chat-shine 4.8s ease-in-out infinite !important;
}

.woot-widget-bubble img,
.woot-widget-bubble svg {
  position: relative !important;
  z-index: 1 !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.16)) !important;
}

.woot-widget-holder,
iframe.woot-widget-holder {
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 34px !important;
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.52),
    0 0 42px rgba(136, 231, 255, 0.16) !important;
  overflow: hidden !important;
}

.woot--bubble-holder {
  right: 20px !important;
  bottom: 20px !important;
}

@keyframes noble-chat-shine {
  0%,
  58% {
    transform: translateX(-130%);
  }

  76%,
  100% {
    transform: translateX(130%);
  }
}

.login-body {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(136, 231, 255, 0.16), transparent 35%),
    linear-gradient(260deg, rgba(169, 137, 255, 0.12), transparent 42%),
    #020204;
}

.login-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 20px;
  align-items: stretch;
  width: min(100%, 1040px);
}

.login-brand {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 540px;
  padding: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 24%, rgba(136, 231, 255, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.028)),
    rgba(7, 9, 14, 0.66);
}

.login-brand::before {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: min(52vw, 520px);
  aspect-ratio: 1.55;
  background: url("/logo_np_transparente.png") center / contain no-repeat;
  opacity: 0.12;
  filter: blur(0.2px) saturate(0.9);
  pointer-events: none;
}

.login-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-width: 620px;
  margin: 0 0 36px;
  border-radius: 0;
  opacity: 0.98;
  box-shadow: none;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 26px rgba(136, 231, 255, 0.12));
}

.login-brand h1 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: 3rem;
}

.login-brand p,
.login-brand .eyebrow {
  position: relative;
  z-index: 1;
}

.login-brand > p:last-child {
  max-width: 520px;
  color: var(--muted);
}

.login-panel {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 30px;
}

.login-panel h2 {
  margin: 0;
}

.login-panel form {
  display: grid;
  gap: 16px;
}

.login-panel .button {
  margin-top: 6px;
}

.admin-body {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100svh;
  background:
    linear-gradient(120deg, rgba(136, 231, 255, 0.1), transparent 32%),
    linear-gradient(240deg, rgba(229, 190, 114, 0.08), transparent 38%),
    #040508;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  padding: 16px;
  border-right: 1px solid var(--line);
  background: rgba(8, 10, 15, 0.72);
  backdrop-filter: blur(22px);
}

.admin-brand {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.admin-brand img {
  width: 50px;
  height: 32px;
}

.admin-sidebar nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.admin-sidebar nav a,
.logout-link {
  border: 1px solid transparent;
  border-radius: var(--pill);
  padding: 10px 12px;
  color: var(--soft);
  font-weight: 780;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active,
.logout-link:hover {
  border-color: rgba(136, 231, 255, 0.35);
  background: rgba(255, 255, 255, 0.075);
  color: var(--ink);
}

.admin-main {
  min-width: 0;
  padding: 18px 22px 60px;
}

.admin-topbar {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.admin-topbar a {
  color: var(--cyan);
}

.admin-hero {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-hero h1 {
  margin-bottom: 0;
  font-size: 3rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.metric-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
}

.metric-grid span {
  display: block;
  color: var(--ink);
  font-size: 1.82rem;
  font-weight: 900;
}

.metric-grid p {
  margin: 0;
  color: var(--muted);
}

.admin-card {
  padding: 16px;
}

.admin-card.narrow {
  max-width: 880px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0 8px;
}

th,
td {
  padding: 11px 12px;
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

td {
  background: rgba(255, 255, 255, 0.045);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

td:first-child {
  border-left: 1px solid var(--line);
  border-radius: 18px 0 0 18px;
}

td:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 18px 18px 0;
}

small {
  color: var(--muted);
}

.status {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
}

.status-novo {
  border-color: rgba(136, 231, 255, 0.38);
  background: rgba(136, 231, 255, 0.14);
  color: var(--cyan);
}

.status-aprovado,
.status-finalizado {
  border-color: rgba(104, 226, 161, 0.38);
  background: rgba(104, 226, 161, 0.14);
  color: var(--green);
}

.status-cancelado {
  border-color: rgba(255, 101, 117, 0.38);
  background: rgba(255, 101, 117, 0.14);
  color: #ffc9d0;
}

.detail-grid,
.split-admin,
.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 14px;
  align-items: start;
}

.detail-list {
  display: grid;
  gap: 8px;
}

.detail-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
}

.detail-list dt {
  color: var(--muted);
}

.detail-list dd {
  margin: 0;
}

.message-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  background: rgba(3, 4, 8, 0.7);
  color: var(--soft);
}

.file-stack {
  display: grid;
  gap: 8px;
}

.file-stack a {
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.file-stack span {
  color: var(--muted);
  font-size: 12px;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-list article {
  display: grid;
  grid-template-columns: 58px 1fr auto auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-list article.no-image {
  grid-template-columns: 1fr auto auto;
}

.admin-list img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
}

.admin-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.review-admin-list small {
  display: block;
  max-width: 640px;
  margin-top: 6px;
  color: var(--soft);
}

.low-stock {
  border-color: rgba(255, 101, 117, 0.42) !important;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-row input {
  width: 18px;
  height: 18px;
}

.admin-notice {
  margin-bottom: 14px;
  border: 1px solid rgba(104, 226, 161, 0.42);
  border-radius: var(--radius-md);
  background: rgba(104, 226, 161, 0.12);
  color: #c9f8dd;
  padding: 13px;
}

.admin-error {
  margin-bottom: 14px;
}

.calc-card {
  display: grid;
  gap: 16px;
}

.calc-card output {
  display: block;
  border: 1px solid rgba(136, 231, 255, 0.38);
  border-radius: var(--radius-lg);
  padding: 16px;
  background: rgba(136, 231, 255, 0.1);
  color: var(--cyan);
  font-size: 1.86rem;
  font-weight: 900;
}

code {
  display: block;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px;
  background: rgba(3, 4, 8, 0.76);
  color: var(--cyan);
}

@media (max-width: 1060px) {
  .hero,
  .seo-band,
  .product-page,
  .login-shell,
  .detail-grid,
  .split-admin,
  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  h1 {
    font-size: 4.45rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  .process-grid,
  .product-grid,
  .faq-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .login-brand {
    min-height: auto;
  }

  .admin-body {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    grid-template-rows: auto auto auto;
  }

  .admin-sidebar nav {
    grid-template-columns: repeat(6, max-content);
    overflow-x: auto;
  }
}

@media (max-width: 740px) {
  .site-header {
    top: 10px;
    width: min(100% - 20px, var(--max));
    border-radius: 28px;
  }

  .brand-mark span {
    max-width: 138px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 0;
    display: none;
    width: min(300px, calc(100vw - 20px));
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(5, 6, 10, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
  }

  .site-nav.open {
    display: flex;
  }

  .hero,
  .craft-band,
  .vitrine-band,
  .reviews-band,
  .seo-band,
  .faq-band,
  .simple-page,
  .product-page,
  .site-footer {
    width: min(100% - 20px, var(--max));
  }

  .hero {
    margin-top: -8px;
    padding: 42px 0 46px;
  }

  .hero::after {
    inset: 58px 0 42px;
    border-radius: 36px;
  }

  .hero-grid {
    inset: 82px 12px 62px;
    border-radius: 32px;
  }

  .hero::before {
    width: 108vw;
    opacity: 0.15;
  }

  h1 {
    font-size: 2.92rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .quote-surface,
  .login-panel,
  .login-brand,
  .admin-card,
  .site-footer {
    border-radius: 30px;
  }

  .field-grid,
  .process-grid,
  .product-grid,
  .faq-grid,
  .metric-grid,
  .process-grid.compact {
    grid-template-columns: 1fr;
  }

  .signal-row {
    grid-template-columns: 1fr;
  }

  .section-head.split,
  .site-footer,
  .admin-hero {
    align-items: start;
    flex-direction: column;
  }

  .site-footer {
    align-items: center;
    margin-bottom: 110px;
    padding-bottom: 28px;
  }

  .product-modal {
    align-items: end;
    padding: 10px;
  }

  .product-modal-panel {
    width: 100%;
    max-height: calc(100svh - 20px);
    border-radius: 30px;
  }

  .product-modal-media {
    margin: 10px 10px 0;
    border-radius: 24px;
  }

  .product-modal-media img {
    height: min(50svh, 430px);
    min-height: 230px;
  }

  .product-modal-content {
    padding: 20px;
  }

  .product-modal-content .button {
    width: 100%;
  }

  .login-body {
    padding: 12px;
  }

  .login-brand,
  .login-panel {
    padding: 22px;
  }

  .login-logo {
    width: 100%;
    margin-bottom: 24px;
  }

  .login-brand::before {
    width: 360px;
    opacity: 0.09;
  }

  .login-brand h1,
  .simple-page h1,
  .admin-hero h1 {
    font-size: 2.35rem;
  }

  .admin-main {
    padding: 14px 12px 42px;
  }

  .detail-list div {
    grid-template-columns: 1fr;
  }

  .admin-list article,
  .admin-list article.no-image {
    grid-template-columns: 1fr;
  }

  .admin-list img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .woot--bubble-holder {
    right: 12px !important;
    bottom: 14px !important;
  }

  .woot-widget-holder,
  iframe.woot-widget-holder {
    border-radius: 28px !important;
  }

  .woot-widget-bubble {
    max-width: calc(100vw - 48px) !important;
    min-height: 46px !important;
    transform: scale(0.92) !important;
    transform-origin: bottom right !important;
  }
}
