@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");
:root {
  --bg: #05070b;
  --surface: #080b11;
  --card: #0d1118;
  --card2: #101620;
  --line: #1b2735;
  --line2: #26384b;
  --text: #eef5fb;
  --muted: #8a99a8;
  --dim: #536171;
  --blue: #5eb5ff;
  --cyan: #79e2ff;
  --white: #fff;
  --max: 1220px;
  --radius: 18px;
  --header: 76px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      circle at 80% 10%,
      rgba(61, 158, 255, 0.07),
      transparent 30%
    ),
    radial-gradient(
      circle at 10% 55%,
      rgba(48, 111, 184, 0.045),
      transparent 28%
    );
  z-index: -2;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
}
.section {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #607182;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 800;
  margin-bottom: 20px;
}
.eyebrow i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(94, 181, 255, 0.75);
}
h1,
h2,
h3,
h4 {
  letter-spacing: -0.055em;
  line-height: 1.02;
}
h1 {
  font-size: clamp(54px, 7.5vw, 104px);
  font-weight: 900;
}
h1 span,
h2 span {
  background: linear-gradient(100deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h2 {
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 800;
}
h3 {
  font-size: 20px;
}
p {
  color: var(--muted);
}
.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header);
  background: rgba(5, 7, 11, 0.58);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: 0.25s;
}
.site-header.scrolled {
  border-color: var(--line);
  background: rgba(5, 7, 11, 0.88);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.brand-symbol {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #020304;
  border: 1px solid var(--line2);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.03),
    0 0 24px rgba(94, 181, 255, 0.06);
}
.brand-symbol img {
  width: 34px;
  height: 22px;
  object-fit: cover;
  object-position: center;
}
.brand-wordmark {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.11em;
}
.brand-wordmark > span {
  color: var(--blue);
}
.brand-wordmark small {
  display: block;
  color: #536171;
  font-size: 6px;
  letter-spacing: 0.24em;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-left: auto;
}
.nav-links a {
  color: #7f8d9c;
  font-size: 11px;
  font-weight: 600;
  transition: 0.2s;
}
.nav-links a:hover {
  color: #fff;
}
.cart-button {
  border: 1px solid var(--line2);
  background: linear-gradient(180deg, #101722, #0b1017);
  color: var(--text);
  border-radius: 10px;
  padding: 9px 11px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.cart-button:hover {
  border-color: #3b5871;
}
.cart-icon {
  color: var(--blue);
  font-size: 17px;
  line-height: 1;
}
.cart-count {
  display: grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  background: var(--blue);
  color: #03101c;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
}
.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  background: #fff;
  margin: 5px;
}
.hero {
  min-height: 96vh;
  display: grid;
  align-items: center;
  padding-top: 155px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: linear-gradient(rgba(37, 65, 91, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 65, 91, 0.45) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 5%, transparent 86%);
}
.hero:after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(94, 181, 255, 0.11);
  border-radius: 50%;
  right: -210px;
  top: 110px;
  box-shadow: 0 0 90px rgba(94, 181, 255, 0.05);
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(94, 181, 255, 0.11);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one {
  width: 430px;
  height: 430px;
  right: -120px;
  top: 155px;
}
.orbit-two {
  width: 720px;
  height: 720px;
  right: -265px;
  top: 10px;
  border-color: rgba(94, 181, 255, 0.055);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-copy {
  max-width: 650px;
  font-size: 17px;
  margin: 27px 0 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.button {
  min-height: 47px;
  border-radius: 10px;
  padding: 0 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 800;
  transition: transform 0.2s, background 0.2s, border 0.2s, box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-light {
  background: linear-gradient(110deg, #fff, #cfeaff);
  color: #06101a;
  box-shadow: 0 10px 35px rgba(77, 170, 255, 0.13);
}
.button-light:hover {
  box-shadow: 0 14px 40px rgba(77, 170, 255, 0.2);
}
.button-ghost,
.button-outline {
  background: rgba(255, 255, 255, 0.015);
  color: #fff;
  border-color: var(--line2);
}
.button-ghost:hover,
.button-outline:hover {
  background: #0f1720;
  border-color: #3a566e;
}
.trust-strip {
  margin-top: 78px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 9px;
  color: #526172;
  letter-spacing: 0.11em;
}
.products-section {
  background: linear-gradient(180deg, #080c12, #070a0f);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}
.section-heading > p {
  max-width: 390px;
  font-size: 13px;
}
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 26px;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 300px);
  background: #0b1017;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 12px;
}
.search-box:focus-within {
  border-color: #3d5970;
  box-shadow: 0 0 0 3px rgba(94, 181, 255, 0.05);
}
.search-box span {
  color: #6f8293;
  font-size: 21px;
}
.search-box input {
  width: 100%;
  height: 43px;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 11px;
}
.search-box input::placeholder {
  color: #4f5d6c;
}
.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 7px;
}
.filter-button {
  background: transparent;
  color: #667687;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 10px;
  transition: 0.2s;
}
.filter-button:hover,
.filter-button.active {
  color: #eaf6ff;
  border-color: #36526b;
  background: #0e1721;
  box-shadow: inset 0 0 18px rgba(94, 181, 255, 0.04);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-card {
  background: linear-gradient(180deg, #0e141d, #0b1017);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.25s;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: #2d4961;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
}
.product-image {
  aspect-ratio: 16/10;
  position: relative;
  background: #05080c;
  overflow: hidden;
}
.product-image:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.3));
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.45s;
}
.product-card:hover .product-image img {
  transform: scale(1.035);
}
.product-badge {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  background: rgba(5, 14, 22, 0.9);
  color: #aee4ff;
  border: 1px solid #2d5872;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.product-image-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  place-items: center;
  align-content: center;
  gap: 5px;
  color: #587084;
  text-align: center;
}
.product-image-placeholder strong {
  font-size: 10px;
  letter-spacing: 0.12em;
}
.product-image-placeholder small {
  font-size: 9px;
}
.image-missing .product-image-placeholder {
  display: grid;
}
.product-body {
  padding: 20px;
}
.product-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}
.product-code {
  font-size: 9px;
  color: #526273;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.product-category {
  font-size: 9px;
  color: #6e8ca5;
}
.product-name {
  font-size: 21px;
  margin: 15px 0 9px;
}
.product-description {
  font-size: 11px;
  min-height: 38px;
}
.product-footer {
  margin-top: 22px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.product-price {
  font-size: 18px;
  color: #fff;
}
.small-button {
  border: 1px solid #29455b;
  background: #0c1721;
  color: #bce8ff;
  border-radius: 9px;
  padding: 9px 11px;
  font-size: 9px;
  font-weight: 900;
}
.small-button:hover {
  border-color: #4c7898;
  background: #10202d;
}
.catalog-empty {
  grid-column: 1/-1;
  border: 1px dashed #23394d;
  border-radius: 18px;
  padding: 55px;
  text-align: center;
  background: radial-gradient(
      circle at 50% 0,
      rgba(94, 181, 255, 0.05),
      transparent 48%
    ),
    #090e15;
}
.catalog-empty .empty-code {
  display: block;
  color: #4f6b80;
  font-size: 9px;
  letter-spacing: 0.18em;
  font-weight: 800;
  margin-bottom: 13px;
}
.catalog-empty h3 {
  font-size: 28px;
  margin-bottom: 9px;
}
.catalog-empty p {
  max-width: 500px;
  margin: 0 auto 22px;
  font-size: 12px;
}
.empty-state {
  color: #5c6c7b;
  text-align: center;
  padding: 30px;
}
.category-section {
  background: #05080d;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.category-grid article {
  min-height: 250px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: 0.25s;
}
.category-grid article:hover {
  background: #09111a;
}
.category-grid span {
  color: #4f6375;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.category-grid h3 {
  margin: 42px 0 10px;
  font-size: 25px;
}
.category-grid p {
  font-size: 11px;
  max-width: 250px;
}
.category-grid a {
  display: inline-block;
  margin-top: 25px;
  color: #80cfff;
  font-size: 9px;
  font-weight: 800;
}
.confidence-section {
  background: linear-gradient(180deg, #09101a, #070a0f);
}
.confidence-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 65px;
}
.confidence-header h2 {
  max-width: 700px;
}
.confidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.confidence-grid article {
  padding: 25px 25px 0 0;
  border-right: 1px solid var(--line);
  margin-right: 25px;
}
.confidence-grid article:last-child {
  border-right: 0;
}
.confidence-grid span,
.process-grid strong,
.reasons-list article > span {
  color: #4d6274;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.confidence-grid h3 {
  margin: 30px 0 8px;
}
.confidence-grid p {
  font-size: 11px;
}
.custom-section {
  background: #080d14;
}
.custom-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 100px;
  align-items: end;
}
.custom-copy p {
  margin-bottom: 17px;
  font-size: 14px;
}
.custom-copy .button {
  margin-top: 18px;
}
.process-grid {
  margin-top: 95px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.process-grid > div {
  padding: 22px;
  border-right: 1px solid var(--line);
}
.process-grid > div:last-child {
  border-right: 0;
}
.process-grid h3 {
  margin: 27px 0 8px;
}
.process-grid p {
  font-size: 11px;
  padding-right: 25px;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.about-copy {
  padding-top: 45px;
  max-width: 550px;
}
.about-copy p {
  margin-bottom: 21px;
  font-size: 14px;
}
.about-highlight {
  color: #fff !important;
  font-size: 21px !important;
  font-weight: 700;
  border-left: 2px solid var(--blue);
  padding-left: 17px;
  margin-top: 34px;
}
.reasons-section {
  background: #080c12;
}
.reasons-list {
  border-top: 1px solid var(--line);
}
.reasons-list article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}
.reasons-list article div {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.reasons-list h3 {
  min-width: 240px;
}
.reasons-list p {
  max-width: 500px;
  font-size: 12px;
}
.faq-section {
  background: #070b10;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 23px 0;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  color: #587084;
  font-size: 17px;
}
details[open] summary:after {
  content: "−";
}
details p {
  padding: 0 40px 23px 0;
  max-width: 700px;
  font-size: 12px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 68px;
  background: #04070a;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 68px;
}
.footer-brand p {
  max-width: 290px;
  margin-top: 18px;
  font-size: 11px;
}
.site-footer h4 {
  color: #fff;
  font-size: 11px;
  margin-bottom: 18px;
}
.site-footer > .container > div > a:not(.brand) {
  display: block;
  color: #607080;
  font-size: 10px;
  margin: 9px 0;
}
.site-footer a:hover {
  color: #fff !important;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #485868;
  font-size: 9px;
  letter-spacing: 0.04em;
}
.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  background: #eaf7ff;
  color: #06111b;
  border: 1px solid #8acbff;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 11px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: 0.25s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
.cart-page-main {
  padding-top: 145px;
  min-height: 100vh;
}
.cart-page .brand {
  margin-right: auto;
}
.cart-page-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}
.cart-panel h1 {
  margin-bottom: 7px;
}
.cart-panel h1 span,
.checkout-panel h2 span {
  color: var(--blue);
}
.cart-lead {
  font-size: 12px;
  margin-bottom: 35px;
}
.checkout-panel {
  border: 1px solid var(--line2);
  background: linear-gradient(180deg, #0d141d, #0a0f16);
  border-radius: 20px;
  padding: 30px;
  position: sticky;
  top: 100px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}
.checkout-panel.is-disabled {
  opacity: 0.55;
}
.checkout-kicker {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.checkout-kicker .eyebrow {
  margin-bottom: 0;
}
.checkout-kicker > span:last-child,
.step-chip {
  font-size: 8px;
  color: #5d7184;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.checkout-panel h2 {
  font-size: 38px;
  margin: 15px 0 7px;
  color: white;
}
.checkout-panel label {
  display: block;
  color: #81909e;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 14px;
}
.checkout-panel input:not([type="checkbox"]) {
  display: block;
  width: 100%;
  margin-top: 7px;
  height: 46px;
  background: #080d13;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  color: #fff;
  padding: 0 13px;
}
.checkout-panel input:focus {
  border-color: #3b5b75;
  box-shadow: 0 0 0 3px rgba(94, 181, 255, 0.05);
}
.checkout-panel button:disabled {
  opacity: 0.55;
  cursor: wait;
}
.checkout-summary {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 14px;
  margin: 20px 0;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
  color: #81909e;
  font-size: 10px;
}
.summary-row strong {
  color: #dbe9f4;
}
.summary-row.total {
  color: #fff;
  border-top: 1px solid var(--line);
  margin-top: 7px;
  padding-top: 13px;
  font-weight: 800;
}
.terms-check {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  color: #647484 !important;
  font-weight: 500 !important;
  line-height: 1.5;
}
.terms-check input {
  margin-top: 2px;
  accent-color: var(--blue);
}
.terms-check a {
  color: #a9dfff;
  text-decoration: underline;
}
.small-note {
  color: #526273;
  text-align: center;
  font-size: 9px;
  margin-top: 12px;
}
.cart-empty {
  padding: 55px 0;
  text-align: center;
  border: 1px dashed var(--line2);
  border-radius: 16px;
}
.cart-empty-mark {
  width: 42px;
  height: 42px;
  border: 1px solid #2a4155;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: #59748b;
  font-size: 22px;
}
.cart-empty strong {
  display: block;
  margin-bottom: 5px;
}
.cart-empty p {
  font-size: 11px;
  margin-bottom: 20px;
}
.cart-item {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 15px;
  align-items: center;
}
.cart-item-image-wrap {
  width: 72px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #070a0e;
}
.cart-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-code {
  color: #4e6172;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.cart-item-name {
  font-size: 12px;
  font-weight: 800;
  margin: 4px 0;
}
.cart-item-price {
  font-size: 10px;
  color: #91a5b7;
}
.remove-item {
  border: 0;
  background: transparent;
  color: #4f6273;
  font-size: 20px;
}
.remove-item:hover {
  color: #fff;
}
.page-cart-total {
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-cart-total span {
  color: #607181;
  font-size: 10px;
}
.page-cart-total strong {
  font-size: 27px;
}
.full-width {
  width: 100%;
}
.pix-box {
  text-align: center;
  margin-top: 18px;
  padding: 24px 0;
}
.pix-symbol {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid #35627e;
  border-radius: 22px;
  background: radial-gradient(circle, rgba(94, 181, 255, 0.16), transparent 70%),
    #071018;
  color: #aee5ff;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 0 45px rgba(94, 181, 255, 0.08);
}
.pix-box > strong {
  display: block;
  font-size: 28px;
  color: #fff;
}
.pix-box p {
  font-size: 10px;
  margin: 9px auto 15px;
  max-width: 360px;
}
.order-number-box {
  margin: 20px 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.order-number-box span {
  color: #5b6e80;
  font-size: 9px;
}
.order-number-box strong {
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.success-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #a9ddff);
  color: #06111b;
  font-size: 24px;
  margin-bottom: 23px;
  box-shadow: 0 0 35px rgba(94, 181, 255, 0.14);
}
#page-success > p {
  font-size: 12px;
  margin-top: 14px;
}
.legal-page {
  padding-top: 145px;
  min-height: 85vh;
}
.legal-intro {
  max-width: 720px;
  font-size: 16px;
  margin: 23px 0 55px;
}
.legal-content {
  max-width: 850px;
  border-top: 1px solid var(--line);
  padding-top: 5px;
}
.legal-content h2,
.legal-content h3 {
  margin-top: 34px;
  margin-bottom: 11px;
}
.legal-content h2 {
  font-size: 27px;
}
.legal-content h3 {
  font-size: 17px;
}
.legal-content p {
  font-size: 12px;
  margin-bottom: 17px;
  max-width: 780px;
}
.legal-content a {
  color: #9edcff;
  text-decoration: underline;
}
.legal-updated {
  margin-top: 40px !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #536475 !important;
  font-size: 9px !important;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 40px;
}
.legal-grid > div {
  background: #0b0f15;
  padding: 25px;
}
.legal-grid h3 {
  margin: 8px 0;
}
.legal-grid p {
  font-size: 10px;
}
@media (max-width: 1000px) {
  .nav-links {
    gap: 13px;
  }
  .nav-links a {
    font-size: 10px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .confidence-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .confidence-grid article:nth-child(3),
  .confidence-grid article:nth-child(4) {
    margin-top: 30px;
  }
  .custom-layout,
  .about-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-copy {
    padding-top: 0;
  }
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-main > div:last-child {
    grid-column: 2;
  }
  .cart-page-layout {
    grid-template-columns: 1fr;
  }
  .checkout-panel {
    position: static;
  }
}
@media (max-width: 760px) {
  :root {
    --header: 66px;
  }
  .container {
    width: min(calc(100% - 32px), var(--max));
  }
  .section {
    padding: 90px 0;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    gap: 10px;
  }
  .brand-wordmark {
    font-size: 13px;
  }
  .brand-symbol {
    width: 34px;
    height: 34px;
  }
  .brand-symbol img {
    width: 30px;
    height: 19px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: #070b10;
    border-bottom: 1px solid var(--line);
    padding: 18px 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 10px;
  }
  .cart-label {
    display: none;
  }
  .hero {
    min-height: 90vh;
    padding-top: 120px;
  }
  .hero-copy {
    font-size: 14px;
  }
  .trust-strip {
    margin-top: 50px;
  }
  .section-heading,
  .confidence-header {
    align-items: start;
    flex-direction: column;
  }
  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .search-box {
    width: 100%;
  }
  .category-filters {
    justify-content: start;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .confidence-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .confidence-grid article,
  .confidence-grid article:nth-child(3),
  .confidence-grid article:nth-child(4) {
    margin-top: 0;
    padding-bottom: 25px;
  }
  .process-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
  }
  .reasons-list article {
    grid-template-columns: 45px 1fr;
    gap: 15px;
  }
  .reasons-list article div {
    display: block;
  }
  .reasons-list h3 {
    min-width: 0;
    margin-bottom: 9px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-main > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .cart-page-main {
    padding-top: 110px;
  }
  .checkout-panel {
    padding: 22px;
  }
  .legal-page {
    padding-top: 110px;
  }
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .catalog-empty {
    padding: 40px 20px;
  }
  .catalog-empty h3 {
    font-size: 23px;
  }
}


/* =========================================================
   BYTE WEST / CHECKOUT — 4 ETAPAS
   ========================================================= */
.checkout-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 0 34px;
}
.checkout-step {
  padding: 13px 10px;
  border-right: 1px solid var(--line);
  opacity: .45;
}
.checkout-step:last-child { border-right: 0; }
.checkout-step span {
  display: block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  color: #597085;
}
.checkout-step small {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  color: #718293;
}
.checkout-step.active {
  opacity: 1;
  background: linear-gradient(90deg, rgba(94,181,255,.07), transparent);
}
.checkout-step.active span,
.checkout-step.active small {
  color: #a9ddff;
}
.checkout-panel[data-current-step="4"] {
  border-color: #2d5872;
}
.checkout-step-view[hidden] { display: none !important; }
.checkout-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.checkout-actions .button {
  flex: 1;
}
.pix-key-display {
  width: 100%;
  padding: 14px;
  margin: 17px 0 10px;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #070b10;
  color: #b9e7ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}
.success-view {
  text-align: left;
}
.success-view > p {
  max-width: 520px;
  font-size: 13px;
}
.success-email {
  padding: 14px;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #080d13;
  color: #6f8293;
  font-size: 10px;
}
.success-email strong {
  color: #dff3ff;
}
@media (max-width: 600px) {
  .checkout-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .checkout-step {
    padding: 11px 7px;
  }
  .checkout-step small {
    font-size: 8px;
  }
  .checkout-actions {
    flex-direction: column-reverse;
  }
}

/* ==========================================================
   PÁGINA DINÂMICA DE PRODUTO
   Usa a mesma identidade visual da loja. Nenhum novo HTML por produto:
   product.html?id=ID resolve tudo pelo catálogo em store-data.js.
   ========================================================== */
.product-detail-hero { padding-top: 150px; }
.product-detail-grid { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr); gap:70px; align-items:center; }
.product-detail-media { background: linear-gradient(180deg, #0e141d, #0b1017);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.25s; }
.product-detail-image { position:relative; border:1px solid rgba(255,255,255,.12); background:#090c12; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.product-detail-image:after { content:""; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,.03),transparent 45%,rgba(0,180,255,.06)); pointer-events:none; }
.product-detail-image img { width:100%; height:100%; object-fit:cover; display:block; position:relative; z-index:1; }
.product-detail-image > span { position: absolute;
    z-index: 2;
    top: 13px;
    left: 13px;
    background: rgba(5, 14, 22, 0.9);
    color: #aee4ff;
    border: 1px solid #2d5872;
    border-radius: 999px;
    padding: 5px 8px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em; }
.product-detail-image .product-image-placeholder { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; color:#fff; z-index:0; }
.product-detail-image .product-image-placeholder strong { font-size:22px; text-transform:uppercase; letter-spacing:.06em; }
.product-detail-image .product-image-placeholder small { opacity:.55; letter-spacing:.08em; }
.product-detail-copy { min-width:0; }
.product-detail-meta { display:flex; gap:14px; margin-bottom:24px; flex-wrap:wrap; }
.product-detail-copy .eyebrow { display:block; margin-bottom:18px; }
.product-detail-copy h1 { font-size:clamp(42px,5.2vw,78px); line-height:.95; letter-spacing:-.055em; margin:0 0 24px; max-width:850px; }
.product-detail-lead { max-width:680px; font-size:18px; line-height:1.8; opacity:.72; margin:0 0 34px; }
.product-detail-buy { display:flex; align-items:center; gap:22px; flex-wrap:wrap; border-top:1px solid rgba(255,255,255,.1); padding-top:25px; }
.product-detail-buy strong { font-size:30px; letter-spacing:-.04em; }
.product-detail-buy .button { margin:0; }
.product-detail-note { font-size:12px; line-height:1.7; opacity:.55; max-width:620px; margin-top:18px; }
.product-detail-info { background:#090c12; }
.product-info-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; }
.product-info-grid h2,.product-cta h2 { font-size:clamp(38px,4.5vw,64px); line-height:1; letter-spacing:-.05em; margin:15px 0 0; }
.product-info-grid h2 span,.product-cta h2 span { color:#fff; opacity:.45; }
.product-info-grid > div:last-child { padding-top:10px; }
.product-info-grid p { font-size:17px; line-height:1.85; opacity:.72; }
.product-info-grid .product-ideal { margin-top:30px; padding-top:24px; border-top:1px solid rgba(255,255,255,.1); }
.product-info-grid .product-ideal strong { color:#fff; }
.product-features-section { background:#05070b; }
.product-features { display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid rgba(255,255,255,.12); }
.product-features article { padding:34px 30px; border-bottom:1px solid rgba(255,255,255,.12); min-height:170px; }
.product-features article:nth-child(odd) { border-right:1px solid rgba(255,255,255,.12); }
.product-features article span { font-size:11px; letter-spacing:.12em; opacity:.5; }
.product-features article h3 { margin:28px 0 0; font-size:19px; line-height:1.45; max-width:600px; }
.product-cta-section { background:#090c12; }
.product-cta { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:end; }
.product-cta > div:last-child { padding-bottom:5px; }
.product-cta p { max-width:600px; line-height:1.8; opacity:.7; margin:0 0 28px; }
.product-not-found { min-height:70vh; padding-top:180px; }
.product-not-found h1 { font-size:clamp(46px,7vw,90px); line-height:.95; letter-spacing:-.06em; margin:18px 0; }
.product-not-found h1 span { opacity:.45; }
.product-not-found p { max-width:600px; line-height:1.8; opacity:.7; margin-bottom:30px; }
@media (max-width:900px) {
  .product-detail-grid,.product-info-grid,.product-cta { grid-template-columns:1fr; gap:45px; }
  .product-detail-hero { padding-top:120px; }
  .product-detail-image,.product-detail-image img { min-height:420px; }
  .product-features { grid-template-columns:1fr; }
  .product-features article:nth-child(odd) { border-right:0; }
}
@media (max-width:600px) {
  .product-detail-copy h1 { font-size:42px; }
  .product-detail-image,.product-detail-image img { min-height:320px; }
  .product-detail-buy { align-items:flex-start; flex-direction:column; }
  .product-detail-buy .button { width:100%; }
  .product-info-grid h2,.product-cta h2 { font-size:40px; }
}
.product-card { position:relative; }
.product-card-link { display:block; color:inherit; text-decoration:none; }
.product-card-link:hover .product-name { color:#fff; }
.product-card-link .small-button { display:inline-flex; }
.product-quick-add { position:absolute; right:20px; bottom:20px; z-index:3; background:transparent; border:0; color:inherit; font:inherit; font-size:0px; font-weight:800; cursor:pointer; opacity:.72; }
.product-quick-add:hover { opacity:1; }
@media (max-width:600px){ .product-quick-add { position:static; margin:0 20px 18px; } }
