:root {
  --paper: #070707;
  --paper-soft: #0d0d0f;
  --surface: rgba(18, 18, 20, 0.86);
  --surface-strong: #111114;
  --ink: #f8f5ee;
  --muted: rgba(248, 245, 238, 0.68);
  --muted-strong: rgba(248, 245, 238, 0.82);
  --line: rgba(255, 255, 255, 0.11);

  --black: #070707;
  --black-2: #111114;
  --black-3: #18181c;

  --gold: #d6aa4f;
  --gold-strong: #f0c86a;
  --gold-soft: rgba(214, 170, 79, 0.14);

  --white: #ffffff;
  --danger: #d55b4a;

  --radius: 26px;
  --radius-sm: 16px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 16px 42px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214, 170, 79, 0.14), transparent 34rem),
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.07), transparent 28rem),
    linear-gradient(180deg, #070707 0%, #0b0b0d 42%, #060606 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: #080808;
  background: var(--gold-strong);
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(7, 7, 7, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--gold-strong);
  background:
    radial-gradient(circle at 30% 20%, rgba(240, 200, 106, 0.24), transparent 34%),
    linear-gradient(145deg, #19191d, #070707);
  border: 1px solid rgba(214, 170, 79, 0.28);
  border-radius: 17px;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--white);
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted-strong);
  font-weight: 850;
}

.nav-links a {
  padding: 10px 0;
  transition: color 170ms ease, transform 170ms ease;
}

.nav-links a:hover {
  color: var(--gold-strong);
  transform: translateY(-1px);
}

/* BOTÕES */

.nav-cta,
.primary-action,
.secondary-action,
.panel-whatsapp,
.buy-button,
.details-button,
.empty-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.nav-cta,
.primary-action,
.panel-whatsapp,
.buy-button,
.empty-action {
  color: #090909;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 16px 32px rgba(214, 170, 79, 0.20);
}

.nav-cta:hover,
.primary-action:hover,
.panel-whatsapp:hover,
.buy-button:hover,
.empty-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(214, 170, 79, 0.28);
}

.secondary-action,
.details-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.secondary-action:hover,
.details-button:hover {
  color: var(--gold-strong);
  border-color: rgba(214, 170, 79, 0.42);
  background: rgba(214, 170, 79, 0.08);
  transform: translateY(-3px);
}

/* LAYOUT BASE */

main {
  overflow: hidden;
}

.storefront,
.trust-strip,
.catalog-section,
.about-section,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

/* HERO */

.storefront {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: clamp(54px, 8vw, 108px) 0 34px;
}

.storefront::before {
  content: "";
  position: absolute;
  inset: 8% auto auto -22%;
  z-index: -1;
  width: min(780px, 88vw);
  height: min(780px, 88vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(214, 170, 79, 0.14), transparent 62%);
  filter: blur(10px);
}

.storefront-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 9px;
  margin: 0 0 18px;
  padding: 9px 15px;
  color: var(--gold-strong);
  background: rgba(214, 170, 79, 0.11);
  border: 1px solid rgba(214, 170, 79, 0.22);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold-strong);
  box-shadow: 0 0 22px var(--gold-strong);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3.25rem, 6.8vw, 6.15rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.storefront-copy p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 14px;
}

/* PRODUTO DESTAQUE */

.feature-product {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(18, 18, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.feature-product::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(214, 170, 79, 0.18);
  filter: blur(52px);
  pointer-events: none;
}

.feature-image {
  height: 100%;
  overflow: hidden;
  border-radius: 25px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  filter: saturate(1.06) contrast(1.02);
}

.feature-info {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 5px;
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(214, 170, 79, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(15, 15, 18, 0.80), rgba(5, 5, 7, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.feature-info span {
  color: var(--gold-strong);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feature-info strong {
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.feature-info p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

/* TRUST STRIP */

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
  background: transparent;
  border: 0;
}

.trust-strip div {
  min-height: 128px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(18, 18, 20, 0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.6;
}

/* CATÁLOGO */

.catalog-section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.product-count {
  padding: 11px 15px;
  color: var(--gold-strong);
  background: rgba(214, 170, 79, 0.12);
  border: 1px solid rgba(214, 170, 79, 0.22);
  border-radius: 999px;
  font-weight: 950;
  white-space: nowrap;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(180px, 220px);
  gap: 13px;
  align-items: end;
  margin-bottom: 28px;
}

.search-box,
.sort-box {
  display: grid;
  gap: 8px;
}

.search-box span,
.sort-box span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.search-box input,
.sort-box select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
}

.search-box input::placeholder {
  color: rgba(248, 245, 238, 0.42);
}

.search-box input:focus,
.sort-box select:focus {
  border-color: rgba(214, 170, 79, 0.55);
  box-shadow: 0 0 0 5px rgba(214, 170, 79, 0.12);
}

.sort-box option {
  color: #111114;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 52px;
  padding: 0 15px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.filter-button.is-active {
  color: #090909;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  border-color: transparent;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

/* PAINEL LATERAL */

.sales-panel {
  position: sticky;
  top: 108px;
  padding: 26px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(214, 170, 79, 0.20), transparent 42%),
    linear-gradient(180deg, #17171b, #09090a);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.panel-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-strong);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.sales-panel h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.sales-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin: 24px 0;
}

.mini-metrics div {
  padding: 15px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.mini-metrics strong,
.mini-metrics span {
  display: block;
}

.mini-metrics strong {
  color: var(--gold-strong);
  font-size: 1.45rem;
  line-height: 1;
}

.mini-metrics span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.35;
}

.panel-whatsapp {
  width: 100%;
}

/* CARDS DE PRODUTO */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
    rgba(18, 18, 20, 0.86);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(214, 170, 79, 0.34);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.40);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(214, 170, 79, 0.13), transparent 56%),
    #101013;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.02);
}

.product-media.is-fallback::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold-strong);
  content: attr(data-initials);
  font-size: 2.7rem;
  font-weight: 950;
}

.product-body {
  display: grid;
  gap: 13px;
  padding: 18px;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-tag,
.product-category,
.product-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.70rem;
  font-weight: 950;
  white-space: nowrap;
}

.product-tag {
  color: #090909;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
}

.product-category {
  color: var(--gold-strong);
  background: rgba(214, 170, 79, 0.12);
  border: 1px solid rgba(214, 170, 79, 0.18);
}

.product-status,
.status-badge {
  color: #d7ffe9;
  background: rgba(88, 214, 141, 0.12);
  border: 1px solid rgba(88, 214, 141, 0.22);
}

.product-card h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.product-card p {
  min-height: 48px;
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price {
  color: var(--gold-strong);
  font-size: 1.30rem;
  font-weight: 950;
}

.old-price {
  color: rgba(248, 245, 238, 0.44);
  font-size: 0.92rem;
  text-decoration: line-through;
}

.installments {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
}

.product-specs {
  display: grid;
  gap: 8px;
}

.product-specs span {
  display: grid;
  gap: 2px;
  padding: 10px 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.052);
  border: 1px solid var(--line);
  border-radius: 15px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.product-specs strong {
  color: var(--gold-strong);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.buy-button,
.details-button {
  min-height: 44px;
  padding: 0 12px;
  font-size: 0.92rem;
}

/* EMPTY */

.empty-state {
  grid-column: 1 / -1;
  min-height: 260px;
  padding: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 26px;
}

.empty-state h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.45rem;
}

.empty-state p {
  max-width: 460px;
  margin: 0 auto 18px;
  color: var(--muted);
  line-height: 1.6;
}

/* SOBRE */

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 70px);
  align-items: center;
  padding: 0 0 clamp(72px, 10vw, 118px);
}

.about-media {
  overflow: hidden;
  min-height: 540px;
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #111;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02);
}

.about-copy p:not(.eyebrow) {
  margin: 24px 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-points span {
  padding: 11px 14px;
  color: var(--gold-strong);
  background: rgba(214, 170, 79, 0.11);
  border: 1px solid rgba(214, 170, 79, 0.20);
  border-radius: 999px;
  font-weight: 900;
}

/* CONTATO */

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 46px;
  padding: clamp(30px, 5vw, 54px);
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(214, 170, 79, 0.24), transparent 34%),
    linear-gradient(135deg, #16161a 0%, #080808 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.contact-section .eyebrow {
  color: var(--gold-strong);
}

.contact-section h2 {
  max-width: 760px;
  font-size: clamp(2.3rem, 4.6vw, 4rem);
}

.contact-section .primary-action {
  white-space: nowrap;
}

/* FOOTER */

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 58px);
  color: var(--muted);
  background: #050505;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--gold-strong);
  font-weight: 900;
}

/* MODAL */

.product-modal {
  width: min(940px, calc(100% - 28px));
  padding: 0;
  overflow: visible;
  color: var(--ink);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.62);
}

.product-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #080808;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.modal-body {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  gap: 0;
}

.modal-image {
  display: grid;
  place-items: center;
  min-height: 540px;
  background: #101013;
  border-radius: 30px 0 0 30px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 30px 0 0 30px;
}

.modal-fallback {
  color: var(--gold-strong);
  font-size: 4rem;
  font-weight: 950;
}

.modal-content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
}

.modal-content h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.modal-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.modal-specs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.notice-card {
  padding: 15px;
  color: var(--gold-strong) !important;
  background: rgba(214, 170, 79, 0.10);
  border: 1px solid rgba(214, 170, 79, 0.20);
  border-radius: 17px;
  font-size: 0.92rem;
}

.modal-buy {
  min-height: 54px;
  border-radius: 999px;
  font-weight: 950;
}

/* WHATSAPP FLUTUANTE */

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  color: #080808;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(214, 170, 79, 0.26);
  font-weight: 950;
}

/* PÁGINA DE PRIVACIDADE */

.privacy-page {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0 82px;
}

.privacy-card {
  padding: clamp(24px, 5vw, 52px);
  background: rgba(18, 18, 20, 0.86);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.privacy-card h1 {
  max-width: 800px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.privacy-card h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--gold-strong);
  font-size: 1.6rem;
}

.privacy-card p,
.privacy-card li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.privacy-card ul {
  padding-left: 22px;
}

.privacy-card strong {
  color: var(--white);
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.privacy-note {
  margin-top: 28px;
  padding: 16px;
  color: var(--gold-strong);
  background: rgba(214, 170, 79, 0.10);
  border: 1px solid rgba(214, 170, 79, 0.20);
  border-radius: 18px;
}

/* RESPONSIVO */

@media (max-width: 1080px) {
  .catalog-tools {
    grid-template-columns: 1fr;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .sales-panel {
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .storefront,
  .about-section {
    grid-template-columns: 1fr;
  }

  .feature-product {
    min-height: 430px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .contact-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-image,
  .modal-image img {
    min-height: 300px;
    border-radius: 30px 30px 0 0;
  }

  .modal-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 600px) {
  .site-header {
    min-height: unset;
    padding: 12px 16px;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .storefront,
  .trust-strip,
  .catalog-section,
  .about-section,
  .contact-section {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  h2,
  .contact-section h2,
  .modal-content h3 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .feature-product {
    min-height: 390px;
    border-radius: 26px;
  }

  .feature-info {
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 20px;
  }

  .about-media,
  .about-media img {
    min-height: 390px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .site-footer {
    text-align: center;
    align-items: center;
  }
}
/* =========================================================
   CORREÇÃO FINAL: AVISO IMPORTANTE + POLÍTICA DE PRIVACIDADE
   ========================================================= */

/* Aviso importante do catálogo */
.catalog-warning {
  width: min(1180px, calc(100% - 36px));
  margin: clamp(34px, 5vw, 70px) auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: clamp(20px, 3vw, 28px);
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(214, 170, 79, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(18, 18, 20, 0.88);
  border: 1px solid rgba(214, 170, 79, 0.22);
  border-left: 5px solid var(--gold-strong);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.warning-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #080808;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(214, 170, 79, 0.22);
}

.warning-content strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-strong);
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.warning-content p {
  max-width: 1100px;
  margin: 0;
  color: rgba(248, 245, 238, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}

/* Página de privacidade */
.privacy-page {
  width: min(980px, calc(100% - 36px)) !important;
  margin: 0 auto !important;
  padding: clamp(46px, 7vw, 86px) 0 clamp(70px, 9vw, 110px) !important;
}

.privacy-card {
  color: var(--ink) !important;
  background:
    radial-gradient(circle at top right, rgba(214, 170, 79, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(18, 18, 20, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 30px !important;
  box-shadow: var(--shadow) !important;
}

.privacy-card h1 {
  color: var(--white) !important;
  letter-spacing: -0.06em !important;
}

.privacy-card h2 {
  color: var(--gold-strong) !important;
  font-size: 1.55rem !important;
  letter-spacing: -0.03em !important;
}

.privacy-card p,
.privacy-card li {
  color: rgba(248, 245, 238, 0.76) !important;
  font-size: 1rem !important;
  line-height: 1.78 !important;
}

.privacy-card strong {
  color: var(--white) !important;
}

.privacy-card ul {
  padding-left: 22px !important;
}

.privacy-note {
  color: var(--gold-strong) !important;
  background: rgba(214, 170, 79, 0.10) !important;
  border: 1px solid rgba(214, 170, 79, 0.22) !important;
  border-radius: 18px !important;
}

.privacy-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 30px !important;
}

/* Rodapé melhorado */
.site-footer {
  align-items: center;
}

.site-footer span,
.site-footer a {
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--gold-strong);
  font-weight: 950;
}

.site-footer a:hover {
  color: var(--white);
}

/* Responsivo */
@media (max-width: 700px) {
  .catalog-warning {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .warning-icon {
    width: 38px;
    height: 38px;
  }

  .privacy-card {
    padding: 24px !important;
  }

  .privacy-actions .primary-action,
  .privacy-actions .secondary-action {
    width: 100%;
  }
}