/* ==========================================================================
   USE ELARA — Design System
   Paleta extraida do branding oficial da marca.
   ========================================================================== */

:root {
  /* Cores institucionais */
  --wine-950: #1c0409;
  --wine-900: #2a0710;
  --wine-800: #350815;
  --wine-700: #4a0e1e;
  --wine-600: #5d1428;
  --wine-500: #74203a;

  --gold-600: #a8842a;
  --gold-500: #c9a227;
  --gold-400: #d9b95c;
  --gold-300: #ead39a;
  --champagne: #f3e6c6;

  --cream: #fbf6ee;
  --cream-soft: #f6eee2;
  --blush: #e9c7c3;
  --blush-deep: #d9a9a4;

  --ink: #1a0a10;
  --ink-soft: #4d3a41;
  --muted: #7c6a70;

  --line-gold: rgba(201, 162, 39, 0.32);
  --line-soft: rgba(26, 10, 16, 0.1);

  --shadow-sm: 0 2px 10px rgba(42, 7, 16, 0.08);
  --shadow-md: 0 18px 40px -18px rgba(42, 7, 16, 0.35);
  --shadow-lg: 0 40px 90px -40px rgba(42, 7, 16, 0.55);
  --glow-gold: 0 0 40px rgba(201, 162, 39, 0.35);

  --font-display: "Cormorant Garamond", "Times New Roman", Times, serif;
  --font-sans: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 20px;

  --container: 1220px;
  --header-h: 78px;
  --z-base: 1;
  --z-sticky: 40;
  --z-header: 1000;
  --z-nav: 1100;
  --z-fab: 1200;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
  isolation: isolate;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

::selection {
  background: var(--wine-700);
  color: var(--champagne);
}

[data-elara-header] {
  position: relative;
  z-index: var(--z-header);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: calc(var(--z-header) + 20);
  background: var(--wine-700);
  color: var(--champagne);
  padding: 12px 20px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ------------------------------------------------------------ Layout ---- */
main {
  position: relative;
  z-index: var(--z-base);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.container-narrow {
  max-width: 860px;
}

.section {
  padding: clamp(64px, 9vw, 118px) 0;
  position: relative;
}

.section-dark {
  background: var(--wine-900);
  color: var(--cream);
}

.section-wine {
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 162, 39, 0.14), transparent 46%),
    linear-gradient(160deg, var(--wine-800), var(--wine-950));
  color: var(--cream);
}

.section-cream {
  background: var(--cream-soft);
}

.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(rgba(255, 255, 255, 0.6) 0.5px, transparent 0.5px);
  background-size: 4px 4px;
}

/* ------------------------------------------------------- Typography ----- */
.display-xl {
  font-size: clamp(2.6rem, 6.4vw, 5.1rem);
  line-height: 1.02;
}

.display-lg {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
}

.display-md {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

.display-sm {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 18px;
}

.section-dark .eyebrow,
.section-wine .eyebrow {
  color: var(--gold-400);
}

.lede {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--ink-soft);
  max-width: 60ch;
}

.section-dark .lede,
.section-wine .lede {
  color: rgba(251, 246, 238, 0.8);
}

.text-gold {
  color: var(--gold-400);
}

.text-serif-italic {
  font-style: italic;
}

.rule-gold {
  width: 74px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  border: 0;
  margin: 26px 0;
}

.rule-gold.center {
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(38px, 5vw, 64px);
  text-align: center;
}

.section-head .lede {
  margin: 18px auto 0;
}

/* ------------------------------------------------------------ Buttons --- */
.btn {
  --btn-bg: var(--wine-700);
  --btn-fg: var(--champagne);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background-color 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-gold {
  --btn-bg: linear-gradient(120deg, var(--gold-500), var(--gold-300), var(--gold-500));
  --btn-fg: var(--wine-950);
  border-color: rgba(201, 162, 39, 0.6);
  background-size: 200% 100%;
}

.btn-gold:hover {
  background-position: 100% 0;
}

.btn-outline {
  --btn-bg: transparent;
  --btn-fg: var(--wine-700);
  border-color: rgba(74, 14, 30, 0.35);
}

.btn-outline:hover {
  --btn-bg: var(--wine-700);
  --btn-fg: var(--champagne);
}

.btn-outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--champagne);
  border-color: rgba(234, 211, 154, 0.5);
}

.btn-outline-light:hover {
  --btn-bg: rgba(234, 211, 154, 0.14);
  --btn-fg: var(--champagne);
}

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  border-color: rgba(251, 246, 238, 0.28);
  padding: 13px 24px;
}

.btn-ghost:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 11px 20px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 0.84rem;
}

.btn-icon {
  padding: 13px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-row-center {
  justify-content: center;
}

.lede-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.link-underline {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine-700);
  border-bottom: 1px solid var(--gold-500);
  padding-bottom: 4px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.link-underline:hover {
  color: var(--gold-600);
  border-color: var(--wine-700);
}

.section-dark .link-underline,
.section-wine .link-underline {
  color: var(--champagne);
}

/* ------------------------------------------------------------- Header --- */
.announce {
  background: linear-gradient(90deg, var(--wine-950), var(--wine-700), var(--wine-950));
  color: var(--champagne);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
}

.announce strong {
  color: var(--gold-300);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(251, 246, 238, 0.94);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
  isolation: isolate;
  transform: translateZ(0);
  transition: box-shadow 0.35s var(--ease), background-color 0.35s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px -18px rgba(42, 7, 16, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

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

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line-gold), var(--shadow-sm);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text .use {
  font-size: 0.6rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.brand-text .name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--wine-700);
  letter-spacing: 0.03em;
}

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

.main-nav a {
  position: relative;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  transition: width 0.35s var(--ease);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--wine-700);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

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

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  color: var(--wine-700);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.icon-link:hover {
  background: var(--wine-700);
  color: var(--champagne);
  border-color: var(--wine-700);
}

.icon-link svg {
  width: 19px;
  height: 19px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--wine-700);
  transition: background-color 0.2s linear;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--wine-700);
  transition: transform 0.3s var(--ease);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* --------------------------------------------------------------- Hero --- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 78% 18%, rgba(201, 162, 39, 0.2), transparent 42%),
    linear-gradient(155deg, var(--wine-800) 0%, var(--wine-950) 62%, #150206 100%);
  color: var(--cream);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(234, 211, 154, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 211, 154, 0.05) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 30% 30%, #000, transparent 72%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) 0 clamp(52px, 7vw, 88px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 26px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
}

.hero .lede {
  margin-bottom: 34px;
  max-width: 48ch;
}

.hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 34px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.66);
}

.hero-micro span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-micro svg {
  width: 15px;
  height: 15px;
  color: var(--gold-400);
  flex: none;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  border-radius: 240px 240px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.hero-frame.pdp-stage {
  position: relative;
  top: auto;
  min-height: 0;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  left: -18px;
  bottom: 34px;
  background: rgba(28, 4, 9, 0.86);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  max-width: 230px;
}

.hero-float .k {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-300);
  line-height: 1;
}

.hero-float .v {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.72);
  margin-top: 8px;
}

.hero-spark {
  position: absolute;
  top: 26px;
  right: 30px;
  width: 42px;
  height: 42px;
  color: var(--gold-400);
  opacity: 0.85;
  animation: twinkle 4.2s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* ---------------------------------------------------------- Trust bar --- */
.trust-strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--cream);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 0;
}

.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.trust-item svg {
  width: 26px;
  height: 26px;
  color: var(--gold-600);
  flex: none;
  margin-top: 3px;
}

.trust-item h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine-700);
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

/* --------------------------------------------------------- Countdown ---- */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 620px;
}

.count-cell {
  text-align: center;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: 20px 8px 16px;
  background: rgba(28, 4, 9, 0.42);
  backdrop-filter: blur(6px);
}

.count-cell .num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
  color: var(--gold-300);
  font-variant-numeric: tabular-nums;
}

.count-cell .lab {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.66);
  margin-top: 10px;
}

/* ---------------------------------------------------------- Editorial --- */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.editorial.reverse .editorial-media {
  order: 2;
}

.editorial-media {
  position: relative;
}

.editorial-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.media-outline {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.editorial-copy h2 {
  margin-bottom: 22px;
}

.editorial-copy p {
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 30px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 24px 0;
}

.stat-row .n {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--wine-700);
  line-height: 1;
}

.stat-row .l {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ----------------------------------------------------------- Cards ------ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  isolation: isolate;
  z-index: 0;
}

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

.card {
  position: relative;
  z-index: 0;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--line-gold);
}

.card-lift {
  transition: transform 0.45s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover .card-lift {
    transform: translateY(-6px);
  }
}

.card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 30%, rgba(201, 162, 39, 0.26), transparent 62%),
    linear-gradient(160deg, var(--wine-800), var(--wine-950));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.card-media svg {
  width: 58%;
  height: 58%;
  color: var(--gold-400);
  transition: transform 0.6s var(--ease);
}

.card:hover .card-media svg {
  transform: scale(1.07) rotate(-2deg);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--wine-950);
  font-weight: 600;
}

.badge-new {
  background: var(--cream);
  color: var(--wine-700);
}

.badge-vip {
  background: var(--wine-600);
  color: var(--champagne);
  border: 1px solid var(--line-gold);
}

.card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.card-cat {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.card-body h3 {
  font-size: 1.32rem;
  color: var(--wine-800);
}

.card-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--wine-700);
}

.price-old {
  font-size: 0.86rem;
  color: var(--muted);
  text-decoration: line-through;
}

.price-installment {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.card-actions {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ------------------------------------------------ Category tiles -------- */
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-gold);
  background: linear-gradient(160deg, var(--wine-800), var(--wine-950));
  color: var(--champagne);
  min-height: 210px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.cat-card svg {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 62px;
  height: 62px;
  color: var(--gold-400);
  opacity: 0.55;
  transition: transform 0.55s var(--ease), opacity 0.4s var(--ease);
}

.cat-card:hover svg {
  transform: scale(1.1) rotate(-4deg);
  opacity: 0.9;
}

.cat-card .cat-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}

.cat-card .cat-count {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.62);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.cat-card .cat-go {
  margin-top: 16px;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-300);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.cat-card:hover .cat-go {
  gap: 14px;
}

/* ------------------------------------------------------------ Filters --- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}

.filter-btn {
  flex: none;
  border: 1px solid var(--line-soft);
  background: transparent;
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 11px 24px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  min-height: 44px;
  transition: all 0.3s var(--ease);
}

.filter-btn:hover {
  border-color: var(--gold-500);
  color: var(--wine-700);
}

.filter-btn.is-active {
  background: var(--wine-700);
  border-color: var(--wine-700);
  color: var(--champagne);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  grid-column: 1 / -1;
}

/* ---------------------------------------------------------- Instagram --- */
.insta-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.insta-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-gold);
  background: linear-gradient(160deg, var(--wine-800), var(--wine-950));
  display: grid;
  place-items: center;
  color: var(--gold-400);
  transition: transform 0.4s var(--ease);
}

.insta-tile:hover {
  transform: scale(1.03);
}

.insta-tile svg {
  width: 46%;
  height: 46%;
  opacity: 0.8;
}

.insta-tile .tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.75);
}

/* --------------------------------------------------------- Testimony ---- */
.quote-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
}

.quote-card::before {
  content: "\201C";
  font-family: var(--font-display);
  position: absolute;
  top: 6px;
  left: 22px;
  font-size: 5rem;
  color: var(--blush);
  line-height: 1;
}

.quote-card p {
  position: relative;
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 22px 0 24px;
  font-style: italic;
}

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

.quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--wine-700), var(--wine-950));
  color: var(--gold-300);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  flex: none;
}

.quote-author .nm {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--wine-800);
}

.quote-author .rl {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--gold-500);
}

.stars svg {
  width: 15px;
  height: 15px;
}

/* ---------------------------------------------------------------- VIP --- */
.vip-panel {
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  background: rgba(251, 246, 238, 0.05);
  backdrop-filter: blur(10px);
  padding: clamp(30px, 4vw, 52px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(28, 4, 9, 0.42);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--cream);
  font-size: 0.94rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.field textarea {
  resize: vertical;
  min-height: 118px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(251, 246, 238, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.field select option {
  background: var(--wine-900);
  color: var(--cream);
}

.field-error {
  font-size: 0.74rem;
  color: var(--blush-deep);
  min-height: 1em;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--blush-deep);
}

.form-note {
  font-size: 0.76rem;
  color: rgba(251, 246, 238, 0.6);
  margin-top: 18px;
  line-height: 1.6;
}

.form-success {
  margin-top: 24px;
  border: 1px solid rgba(234, 211, 154, 0.5);
  background: rgba(201, 162, 39, 0.12);
  border-radius: var(--radius);
  padding: 20px 22px;
  color: var(--champagne);
  font-size: 0.92rem;
}

.form-success[hidden] {
  display: none;
}

.form-success strong {
  color: var(--gold-300);
}

/* Formulario em fundo claro */
.form-light .field label {
  color: var(--wine-700);
}

.form-light .field input,
.form-light .field select,
.form-light .field textarea {
  background: #fff;
  border-color: var(--line-soft);
  color: var(--ink);
}

.form-light .field input::placeholder,
.form-light .field textarea::placeholder {
  color: var(--muted);
}

.form-light .form-note {
  color: var(--muted);
}

.form-light .field-error {
  color: #a3324a;
}

.form-light .form-success {
  background: rgba(74, 14, 30, 0.05);
  border-color: var(--line-gold);
  color: var(--ink-soft);
}

.form-light .form-success strong {
  color: var(--wine-700);
}

.panel-light {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}

.info-block {
  padding: 30px 0;
  border-top: 1px solid var(--line-soft);
}

.info-block h3 {
  font-size: 1.5rem;
  color: var(--wine-800);
  margin-bottom: 14px;
}

.info-block p {
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.check-list svg {
  width: 18px;
  height: 18px;
  color: var(--gold-600);
  flex: none;
  margin-top: 4px;
}

/* --------------------------------------------------------------- FAQ ---- */
.faq-list {
  border-top: 1px solid var(--line-soft);
}

.faq-item {
  border-bottom: 1px solid var(--line-soft);
}

.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--wine-800);
  transition: color 0.3s var(--ease);
}

.faq-q:hover {
  color: var(--gold-600);
}

.faq-q::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 13px;
  height: 13px;
  border-right: 1.5px solid var(--gold-500);
  border-bottom: 1.5px solid var(--gold-500);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.35s var(--ease);
}

.faq-item.is-open .faq-q::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease);
}

.faq-a p {
  padding: 0 44px 26px 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* ------------------------------------------------------------ Footer ---- */
.site-footer {
  background: var(--wine-950);
  color: rgba(251, 246, 238, 0.75);
  padding-top: clamp(56px, 7vw, 88px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 52px;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 0 0 1px var(--line-gold);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 34ch;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
}

.footer-col li {
  margin-bottom: 11px;
}

.footer-col a {
  font-size: 0.88rem;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.footer-col a:hover {
  color: var(--gold-300);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  color: var(--gold-400);
  flex: none;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(234, 211, 154, 0.16);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: rgba(251, 246, 238, 0.55);
}

.footer-seals {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.seal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(234, 211, 154, 0.22);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seal svg {
  width: 14px;
  height: 14px;
  color: var(--gold-400);
}

/* ------------------------------------------------------- WhatsApp FAB --- */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: var(--z-fab);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1f8f4e;
  color: #fff;
  border-radius: 999px;
  padding: 13px 22px 13px 15px;
  box-shadow: 0 18px 40px -14px rgba(31, 143, 78, 0.75);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.wa-fab:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 24px 50px -14px rgba(31, 143, 78, 0.9);
}

.wa-fab svg {
  width: 24px;
  height: 24px;
  flex: none;
}

.wa-fab .wa-label {
  display: inline;
}

/* --------------------------------------------------------- Utilities ---- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }

.bg-cream { background: var(--cream-soft); }

.divider-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold-500);
  margin: 26px 0;
}

.divider-flourish::before,
.divider-flourish::after {
  content: "";
  height: 1px;
  width: 70px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}

.divider-flourish::after {
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.divider-flourish svg {
  width: 16px;
  height: 16px;
}

/* ------------------------------------------------------------ Page hero - */
.page-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.16), transparent 45%),
    linear-gradient(160deg, var(--wine-800), var(--wine-950));
  color: var(--cream);
  padding: clamp(56px, 7vw, 96px) 0 clamp(46px, 6vw, 76px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.6);
  margin-bottom: 22px;
}

.breadcrumb a:hover {
  color: var(--gold-300);
}

/* ------------------------------------------------------------- Steps ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-600);
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}

.step h3 {
  font-size: 1.28rem;
  color: var(--wine-800);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* --------------------------------------------------------- Responsive --- */
@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: calc(var(--header-h)) 0 0 0;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: var(--wine-950);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s var(--ease), opacity 0.35s var(--ease),
      visibility 0.35s;
    z-index: 80;
    inset: calc(var(--header-h)) 0 0 0;
  }

  .nav-open .main-nav {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    color: var(--cream);
    font-size: 1rem;
    letter-spacing: 0.24em;
  }

  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    color: var(--gold-300);
  }

  .header-actions .btn {
    display: none;
  }

  .trust-grid,
  .grid-3,
  .grid-4,
  .grid-2,
  .steps,
  .insta-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial,
  .editorial.reverse {
    grid-template-columns: 1fr;
  }

  .editorial.reverse .editorial-media {
    order: 0;
  }

  .media-outline {
    display: none;
  }

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

  .reveal {
    transform: none;
  }

  .filter-bar {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 4px 16px;
    margin-left: -8px;
    margin-right: -8px;
    position: sticky;
    top: var(--header-h);
    z-index: var(--z-sticky);
    background: linear-gradient(180deg, var(--cream) 78%, rgba(251, 246, 238, 0));
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --header-h: 68px;
  }

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

  .brand-text .name {
    font-size: 1.35rem;
  }

  .header-actions .icon-link {
    display: none;
  }

  .trust-grid,
  .grid-3,
  .grid-4,
  .grid-2,
  .steps,
  .insta-strip {
    grid-template-columns: 1fr;
  }

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

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

  .hero-float {
    position: static;
    margin-top: 18px;
    max-width: none;
  }

  .wa-fab .wa-label {
    display: none;
  }

  .wa-fab {
    padding: 15px;
  }

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

  .btn {
    width: 100%;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-q {
    padding-right: 34px;
  }

  .faq-a p {
    padding-right: 0;
  }

  .card:hover,
  .card:hover .card-lift,
  .card:hover .card-media svg,
  .card:hover .jewel {
    transform: none;
  }

  .reveal {
    transform: none;
  }

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

  .look-switch {
    grid-template-columns: 1fr;
  }

  .whisper {
    font-size: 0.78rem;
  }
}

/* --------------------------------------------------------- Jewel art --- */
.jewel {
  width: 72%;
  height: 72%;
  overflow: visible;
}

.jewel-metal {
  fill: url(#goldFill);
  stroke: #ead39a;
  stroke-width: 1.2;
}

.jewel-soft {
  fill: url(#goldSoft);
}

.jewel-shine {
  fill: #fff8e6;
  opacity: 0.35;
}

@media (hover: hover) and (pointer: fine) {
  .jewel {
    animation: jewel-float 6.4s ease-in-out infinite;
  }

  .jewel-shine {
    animation: jewel-glint 3.8s ease-in-out infinite;
  }

  .card:hover .jewel {
    animation-play-state: paused;
  }
}

/* Cada SVG já traz seu próprio filtro inline (tom de ouro, brilho e
   sombra), então cada peça tem uma assinatura visual única. */

/* --------------------------------------------------- Jewel tilt/sparks -- */
.jewel-tilt {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  transform-style: preserve-3d;
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff8e6;
  box-shadow: 0 0 8px 2px rgba(255, 248, 230, 0.85);
  pointer-events: none;
  opacity: 0;
  animation: twinkle 3.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .spark {
    display: none;
  }
}

@keyframes jewel-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-7px) rotate(1.4deg); }
}

@keyframes jewel-glint {
  0%, 70%, 100% { opacity: 0.15; }
  82% { opacity: 0.85; }
}

.card-media {
  cursor: pointer;
}

.card-media::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -30%;
  width: 55%;
  height: 160%;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 248, 230, 0.28) 50%, transparent 70%);
  transform: translateX(-120%) rotate(18deg);
  pointer-events: none;
}

.card:hover .card-media::after {
  animation: sweep 0.9s var(--ease) forwards;
}

@keyframes sweep {
  to { transform: translateX(280%) rotate(18deg); }
}

.card-link {
  color: inherit;
}

.card-link h3 {
  transition: color 0.3s var(--ease);
}

.card:hover .card-link h3 {
  color: var(--gold-600);
}

/* --------------------------------------------------------- Whisper ---- */
.whisper-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  background: var(--wine-950);
  color: var(--gold-300);
}

.whisper {
  display: flex;
  width: max-content;
  gap: 48px;
  padding: 14px 0;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: whisper 32s linear infinite;
  white-space: nowrap;
}

.whisper span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}

.whisper span::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-500);
}

@keyframes whisper {
  to { transform: translateX(-50%); }
}

/* ---------------------------------------------------------- Gold trail -- */
.gold-trail {
  position: fixed;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 50;
  background: radial-gradient(circle, rgba(234, 211, 154, 0.9), rgba(201, 162, 39, 0) 70%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate(-50%, -50%);
}

/* -------------------------------------------------------------- PDP ----- */
.pdp-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.pdp-stage.stage-inline {
  position: relative;
  top: auto;
  min-height: 420px;
}

.pdp-stage {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-gold);
  background:
    radial-gradient(circle at 50% 28%, rgba(201, 162, 39, 0.28), transparent 58%),
    linear-gradient(165deg, var(--wine-800), var(--wine-950));
  min-height: 420px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.pdp-stage .jewel {
  width: 68%;
  height: 68%;
}

.pdp-copy h1 {
  margin: 8px 0 18px;
}

.pdp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-bottom: 22px;
}

.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.rating-chip svg {
  width: 14px;
  height: 14px;
  color: var(--gold-500);
}

.spec-list {
  margin: 22px 0 28px;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.9rem;
}

.spec-list strong {
  font-weight: 500;
  color: var(--wine-800);
  letter-spacing: 0.04em;
}

.spec-list span {
  color: var(--muted);
  text-align: right;
}

.look-switch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 8px 0 28px;
}

.look-btn {
  border: 1px solid var(--line-soft);
  background: var(--cream-soft);
  border-radius: var(--radius);
  padding: 14px 10px;
  cursor: pointer;
  text-align: left;
  min-height: 72px;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.look-btn strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--wine-800);
  font-weight: 500;
}

.look-btn span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
}

.look-btn.is-active {
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.pdp-stage[data-look="noite"] {
  background:
    radial-gradient(circle at 62% 22%, rgba(233, 199, 195, 0.22), transparent 48%),
    linear-gradient(165deg, #120308, var(--wine-950));
}

.pdp-stage[data-look="trabalho"] {
  background:
    radial-gradient(circle at 40% 30%, rgba(243, 230, 198, 0.22), transparent 52%),
    linear-gradient(165deg, #3a1420, #1a070d);
}

.pdp-stage[data-look="fimdesemana"] {
  background:
    radial-gradient(circle at 50% 40%, rgba(201, 162, 39, 0.3), transparent 55%),
    linear-gradient(165deg, #4a0e1e, #22060d);
}

.review-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 26px 24px 22px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--wine-700), var(--wine-950));
  color: var(--gold-300);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  flex: none;
}

.review-name {
  font-size: 0.9rem;
  color: var(--wine-800);
  font-weight: 500;
}

.review-meta {
  font-size: 0.72rem;
  color: var(--muted);
}

.review-card p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.review-card .used-for {
  margin-top: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
}

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

.hero-orbit {
  position: absolute;
  inset: 8% 6% 10% 8%;
  border: 1px dashed rgba(234, 211, 154, 0.28);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit 28s linear infinite;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.hero-orbit span {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 9px;
  height: 9px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 12px var(--gold-400);
}

.pdp-notfound {
  padding: 80px 20px;
  text-align: center;
}

@media (max-width: 900px) {
  .pdp-stage {
    position: relative;
    top: 0;
    min-height: 320px;
  }

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

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

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

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

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