:root {
  --olive: #3b4d38;
  --olive-dark: #253222;
  --olive-soft: #63715e;
  --sage: #d9dfd0;
  --paper: #f7f5ef;
  --cream: #fffdf8;
  --ink: #20251f;
  --muted: #6d7368;
  --gold: #c8a46d;
  --rose: #d9b8a8;
  --line: rgba(59, 77, 56, 0.18);
  --shadow: 0 18px 42px rgba(35, 45, 32, 0.12);
  --shadow-deep: 0 28px 68px rgba(35, 45, 32, 0.2);
  --ease-out: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  color-scheme: dark light;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(200, 164, 109, 0.12), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(217, 184, 168, 0.14), transparent 30%),
    var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  -webkit-tap-highlight-color: rgba(200, 164, 109, 0.22);
}

/* Anchored sections need clearance below sticky nav */
[id] {
  scroll-margin-top: 90px;
}

/* Hero secondary CTA — demoted from button to text link */
.hero-secondary {
  display: inline-flex;
  align-items: center;
  color: var(--gold, #c8a46d);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(200, 164, 109, 0.4);
  padding: 8px 2px;
  margin-left: 18px;
  transition: color .15s ease, border-color .15s ease;
}

.hero-secondary:hover {
  color: #fff;
  border-color: var(--gold);
}

@media (max-width: 620px) {
  .hero-secondary {
    margin-left: 0;
    margin-top: 8px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--olive-dark);
  color: #fff;
  border-radius: 4px;
  transform: translateY(-140%);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

.section {
  padding: 80px 24px;
}

.section.compact {
  padding-block: 54px;
}

.inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px 24px;
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: background-color .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.nav.dark {
  background: rgba(37, 50, 34, 0.92);
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 6px;
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: cover;
}

.logo span {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav.dark .nav-links {
  color: rgba(255, 255, 255, 0.78);
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--olive);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  touch-action: manipulation;
  overflow: hidden;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.42) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform .55s var(--ease-out);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(32, 37, 31, 0.16);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%);
}

a:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(200, 164, 109, 0.72);
  outline-offset: 4px;
}

.button.light {
  background: #fff;
  color: var(--olive);
  border-color: rgba(255, 255, 255, 0.55);
}

.button.outline {
  background: transparent;
  color: var(--olive);
  border-color: var(--line);
}

.nav.dark .button.outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--olive-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--olive-dark);
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.625rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 26px;
  line-height: 1.08;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: break-word;
}

.lead {
  font-size: 18px;
  max-width: 600px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  padding: 48px 24px 34px;
  display: grid;
  align-items: center;
}

.hero .inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
}

.brand-hero {
  background:
    radial-gradient(circle at 22% 54%, rgba(200, 164, 109, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px),
    var(--olive);
  color: #fff;
}

.brand-hero h1,
.brand-hero h2 {
  color: #fff;
}

.brand-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.brand-hero .inner {
  min-height: 650px;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
}

.hero-logo {
  width: min(360px, 70vw);
  height: min(360px, 70vw);
  aspect-ratio: 1;
  object-fit: contain;
  padding: clamp(18px, 4vw, 38px);
  box-sizing: border-box;
  background: rgba(20, 35, 22, 0.34);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out), border-color .6s var(--ease-out);
}

.hero-logo:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: rgba(200, 164, 109, 0.46);
  box-shadow: 0 34px 80px rgba(20, 30, 18, 0.28);
}

.hero-copy {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.hero-copy .actions {
  margin-top: 8px;
}

.preview-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.preview-strip img,
.product-card img,
.category-card img,
.image-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .65s var(--ease-out), filter .65s var(--ease-out);
}

.product-card img,
.category-card img,
.preview-strip img {
  background: var(--sage);
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.section-title > * {
  min-width: 0;
}

.section-title p {
  max-width: 430px;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.product-card,
.category-card,
.info-card,
.image-card,
.preview-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(35, 45, 32, 0.08);
  transition: transform .34s var(--ease-out), box-shadow .34s var(--ease-out), border-color .34s var(--ease-out), background-color .34s ease;
}

.product-card::after,
.category-card::after,
.preview-card::after,
.recommendation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 38%);
  opacity: 0;
  transition: opacity .34s ease;
}

.product-card:hover,
.category-card:hover,
.preview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 164, 109, 0.42);
  box-shadow: var(--shadow-deep);
}

.product-card:hover::after,
.category-card:hover::after,
.preview-card:hover::after,
.recommendation-card:hover::after {
  opacity: 1;
}

.product-card:hover img,
.category-card:hover img,
.preview-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.product-card .body,
.category-card .body,
.info-card,
.preview-card .body {
  padding: 20px;
}

.product-card h3,
.category-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.price {
  margin: 14px 0 18px;
  color: var(--olive-dark);
  font-weight: 700;
}

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

.split img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.quote-band {
  background: var(--olive-dark);
  color: #fff;
}

.quote-band h2 {
  color: #fff;
  max-width: 860px;
}

.quote-band p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  margin-top: 20px;
}

.contact-band {
  background: var(--sage);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.footer {
  padding: 32px 24px;
  background: var(--olive-dark);
  color: rgba(255, 255, 255, 0.76);
}

.footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer .logo img {
  width: 32px;
  height: 32px;
}

.footer .logo span {
  font-size: 18px;
}

.commercial-hero {
  background:
    radial-gradient(circle at 72% 22%, rgba(200, 164, 109, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(217, 223, 208, 0.48), rgba(255, 253, 248, 0.1)),
    #fffdf8;
}

.commercial-hero .inner {
  min-height: 650px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.commercial-photo {
  position: relative;
  isolation: isolate;
}

.commercial-photo::before {
  content: "";
  position: absolute;
  inset: -16px 18px 18px -16px;
  z-index: -1;
  border: 1px solid rgba(200, 164, 109, 0.5);
  transform: rotate(-1.2deg);
}

.commercial-photo img {
  width: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-deep);
  transition: transform .75s var(--ease-out), filter .75s var(--ease-out);
}

.commercial-photo:hover img {
  transform: scale(1.018);
  filter: saturate(1.05) contrast(1.02);
}

.badge {
  position: absolute;
  right: 34px;
  bottom: 34px;
  padding: 18px 20px;
  background: var(--olive);
  color: #fff;
  border-radius: 6px;
  max-width: 240px;
  box-shadow: 0 18px 34px rgba(32, 37, 31, 0.18);
  transition: transform .34s var(--ease-out), box-shadow .34s var(--ease-out);
}

.commercial-photo:hover .badge {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(32, 37, 31, 0.24);
}

.badge strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.badge span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

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

.collection-feature {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.62), rgba(217, 223, 208, 0.44)),
    var(--cream);
}

.feature-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: center;
}

.feature-copy {
  display: grid;
  gap: 22px;
}

.feature-gallery {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 14px;
}

.feature-gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border: 1px solid rgba(200, 164, 109, 0.26);
  box-shadow: var(--shadow);
  transition: transform .65s var(--ease-out), filter .65s var(--ease-out), box-shadow .65s var(--ease-out);
}

.feature-gallery img:hover {
  transform: translateY(-5px) scale(1.012);
  filter: saturate(1.04) contrast(1.02);
  box-shadow: var(--shadow-deep);
}

.feature-main {
  grid-row: 1 / span 2;
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.editorial-page {
  background: #171b15;
  color: #fff;
}

.editorial-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 60px 24px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 28%),
    radial-gradient(circle at 72% 28%, rgba(200, 164, 109, 0.16), transparent 34%),
    #171b15;
}

.editorial-hero .inner {
  display: grid;
  grid-template-columns: 0.92fr 0.78fr;
  gap: 48px;
  align-items: center;
}

.editorial-hero h1 {
  color: #fff;
  max-width: 760px;
}

.editorial-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.editorial-hero-photo {
  width: min(100%, 520px);
  max-height: calc(100vh - 150px);
  justify-self: end;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  transition: transform .75s var(--ease-out), border-color .75s var(--ease-out), box-shadow .75s var(--ease-out);
}

.editorial-hero-photo:hover {
  transform: translateY(-6px) scale(1.012);
  border-color: rgba(200, 164, 109, 0.42);
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.48);
}

.editorial-page h2,
.editorial-page h3 {
  color: #fff;
}

.editorial-page .section {
  background: #171b15;
}

.editorial-page .product-card,
.editorial-page .category-card,
.editorial-page .info-card {
  background: #20271d;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.editorial-page p,
.editorial-page .price {
  color: rgba(255, 255, 255, 0.72);
}

.editorial-page .button {
  background: #fff;
  color: var(--olive-dark);
}

.editorial-page .button.outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.lookbook {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.lookbook img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.recommendations-band {
  background:
    linear-gradient(180deg, rgba(217, 223, 208, 0.42), rgba(247, 245, 239, 0.96));
}

.recommendation-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.recommendation-grid.compact {
  grid-template-columns: 1.1fr 1fr 1fr;
}

.recommendation-grid.editorial {
  grid-template-columns: 1.25fr 1fr 1fr;
}

.recommendation-card.large {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.recommendation-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 240px;
  margin: 0;
  padding: 14px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(200, 164, 109, 0.18);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(12, 14, 11, 0.18);
  transition: transform .34s var(--ease-out), box-shadow .34s var(--ease-out), border-color .34s ease;
}

.recommendation-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 164, 109, 0.4);
  box-shadow: 0 18px 38px rgba(12, 14, 11, 0.24);
}

.recommendation-card.large {
  min-height: 340px;
}

.recommendation-card.wide {
  min-height: 180px;
}

.recommendation-card img {
  width: auto;
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 6px;
}

.recommendation-card.wide img {
  max-height: 180px;
}

.editorial-recommendations,
.editorial-page .recommendations-band {
  background: #171b15;
}

.editorial-page .recommendation-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.editorial-page .contact-band {
  background: #171b15;
}

.editorial-page .contact-panel {
  background: #20271d;
  border-color: rgba(255, 255, 255, 0.12);
}

.editorial-page .contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

body.v2.edit-v2 .contact-band {
  background: #0f120e;
}

body.v2.edit-v2 .contact-panel {
  background: #1a2218;
  border: 1px solid rgba(200, 164, 109, 0.18);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  box-shadow: 0 12px 24px rgba(32, 37, 31, 0.2);
}

.preview-page {
  background: var(--paper);
}

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

.preview-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.reveal-ready .is-visible {
  animation: reveal-up .72s var(--ease-out) both;
  animation-delay: var(--reveal-delay, 0ms);
}

@keyframes reveal-up {
  from {
    transform: translateY(18px);
  }

  to {
    transform: translateY(0);
  }
}

.preview-card .actions {
  margin-top: 18px;
}

.health-panel {
  max-width: 820px;
}

.health-details {
  overflow: auto;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(0, 0, 0, .22);
  color: var(--paper);
  font: 14px/1.55 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  white-space: pre-wrap;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 920px) {
  .nav {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .brand-hero .inner,
  .commercial-hero .inner,
  .editorial-hero .inner,
  .feature-panel,
  .split,
  .contact-panel,
  .lookbook,
  .recommendation-grid,
  .recommendation-grid.compact,
  .recommendation-grid.editorial {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .recommendation-card.large {
    grid-column: auto;
    grid-row: auto;
  }

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

  .grid.categories,
  .benefits,
  .feature-gallery {
    grid-template-columns: 1fr;
  }

  .feature-main {
    grid-row: auto;
  }

  .split img,
  .commercial-photo img,
  .lookbook img {
    min-height: 380px;
  }

  .editorial-hero-photo {
    width: min(100%, 420px);
    max-height: 560px;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  body,
  .page,
  .inner,
  .hero .inner,
  .brand-hero .inner,
  .commercial-hero .inner {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    line-height: 1.05;
    max-width: calc(100vw - 36px);
    white-space: normal;
  }

  h2 {
    line-height: 1.08;
    max-width: calc(100vw - 36px);
    white-space: normal;
  }

  h3 {
    font-size: 24px;
  }

  .lead {
    font-size: 16px;
    max-width: 352px;
  }

  .hero-copy,
  .section-title > div,
  .section-title p {
    max-width: 352px;
  }

  .brand-hero .inner {
    gap: 32px;
    min-height: auto;
    align-content: start;
  }

  .brand-hero .hero-copy {
    order: 1;
  }

  .brand-hero .hero-logo {
    order: 2;
    width: min(220px, 56vw);
    height: min(220px, 56vw);
    justify-self: start;
  }

  .section,
  .hero {
    padding-inline: 18px;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding-block: 48px;
  }

  .grid.products,
  .preview-grid,
  .preview-strip {
    grid-template-columns: 1fr;
  }

  .grid.products,
  .grid.categories,
  .benefits,
  .feature-gallery,
  .preview-grid,
  .preview-strip,
  .recommendation-grid {
    width: 100%;
    max-width: 352px;
  }

  .product-card,
  .category-card,
  .info-card,
  .preview-card,
  .recommendation-card {
    width: 100%;
    max-width: 352px;
  }

  .recommendation-card,
  .recommendation-card.large,
  .recommendation-card.wide {
    min-height: auto;
    padding: 14px;
  }

  .recommendation-card img,
  .recommendation-card.wide img {
    max-height: 310px;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-panel {
    padding: 24px;
  }

  .actions,
  .contact-panel .actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .commercial-photo,
  .commercial-photo img {
    width: 100%;
    max-width: 100%;
  }

  .badge {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  .floating-whatsapp {
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }
}

/* ============================================================
   V2 — Refined variants. Scoped via body.v2.
   ============================================================ */

body.v2 {
  --gold-warm: #c8a46d;
  --gold-cool: #b89564;
  --olive-deep: #1a2218;
  --ivory: #f5f1e8;
}

body.v2 .eyebrow {
  letter-spacing: 0.22em;
  font-size: 11px;
}

body.v2 .nav {
  min-height: 78px;
}

body.v2 .nav-links {
  letter-spacing: 0.16em;
  font-size: 12px;
}

body.v2 .button {
  letter-spacing: 0.18em;
  border-radius: 2px;
  min-height: 48px;
  padding-inline: 22px;
}

body.v2 .product-card,
body.v2 .category-card,
body.v2 .preview-card {
  border-radius: 4px;
}

body.v2 .product-card .body,
body.v2 .category-card .body {
  padding: 22px 22px 24px;
}

body.v2 .price {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Institucional v2 — boutique premium */
body.v2.inst-v2 {
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at 14% 6%, rgba(200, 164, 109, 0.16), transparent 38%),
    radial-gradient(circle at 92% 22%, rgba(217, 184, 168, 0.12), transparent 32%),
    var(--paper);
}

body.v2.inst-v2 h1,
body.v2.inst-v2 h2,
body.v2.inst-v2 h3 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.012em;
  font-weight: 500;
}

body.v2.inst-v2 .brand-hero {
  background:
    radial-gradient(circle at 18% 56%, rgba(200, 164, 109, 0.22), transparent 36%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, var(--olive) 0%, var(--olive-deep) 100%);
}

body.v2.inst-v2 .brand-hero .inner {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

body.v2.inst-v2 .hero-logo {
  background: rgba(20, 30, 18, 0.42);
  border: 1px solid rgba(200, 164, 109, 0.32);
  padding: clamp(22px, 4.5vw, 44px);
}

body.v2.inst-v2 .hero-copy h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
}

body.v2.inst-v2 .hero-copy .lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  max-width: 520px;
}

body.v2.inst-v2 .gold-rule {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--gold-warm);
  margin-bottom: 18px;
}

body.v2.inst-v2 .pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

body.v2.inst-v2 .pillar {
  padding: 32px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold-warm);
  transition: transform .34s var(--ease-out), box-shadow .34s var(--ease-out);
}

body.v2.inst-v2 .pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

body.v2.inst-v2 .pillar-num {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--gold-warm);
  font-size: 22px;
  margin-bottom: 14px;
  display: block;
}

body.v2.inst-v2 .pillar h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

body.v2.inst-v2 .product-card h3 {
  font-size: 24px;
}

body.v2.inst-v2 .product-card .body {
  text-align: left;
}

body.v2.inst-v2 .quote-band {
  background: var(--olive-deep);
  position: relative;
}

body.v2.inst-v2 .quote-band::before {
  content: "“";
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-warm);
  font-family: "Playfair Display", serif;
  font-size: 120px;
  line-height: 1;
  opacity: 0.4;
}

body.v2.inst-v2 .quote-band h2 {
  text-align: center;
  margin: 0 auto;
  max-width: 820px;
  font-style: italic;
  font-weight: 400;
}

body.v2.inst-v2 .quote-band .inner {
  text-align: center;
}

/* Vitrine v2 — converte com clareza */
body.v2.vit-v2 {
  font-family: "Inter", system-ui, sans-serif;
}

body.v2.vit-v2 h1,
body.v2.vit-v2 h2,
body.v2.vit-v2 h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.005em;
}

body.v2.vit-v2 .commercial-hero h1 {
  color: var(--gold-warm);
}

body.v2.vit-v2 .commercial-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(200, 164, 109, 0.22), transparent 32%),
    linear-gradient(110deg, rgba(217, 223, 208, 0.62), rgba(255, 253, 248, 0.2) 60%),
    var(--cream);
}

body.v2.vit-v2 .trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

body.v2.vit-v2 .trust-row > div {
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

body.v2.vit-v2 .trust-row > div:first-child {
  padding-left: 0;
  border-left: none;
}

body.v2.vit-v2 .trust-row strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  color: var(--gold-warm);
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

body.v2.vit-v2 .trust-row span {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

body.v2.vit-v2 .badge {
  border-radius: 2px;
  background: var(--olive-dark);
  border: 1px solid rgba(200, 164, 109, 0.32);
}

body.v2.vit-v2 .badge strong {
  font-family: "DM Serif Display", serif;
}

body.v2.vit-v2 .product-card {
  position: relative;
}

body.v2.vit-v2 .product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 12px;
  background: var(--olive);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
}

body.v2.vit-v2 .product-tag.gold {
  background: var(--gold-warm);
}

body.v2.vit-v2 .product-card .body .actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 12px;
}

body.v2.vit-v2 .floating-whatsapp {
  background: var(--olive);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(32, 37, 31, 0.28);
  padding: 0 22px;
}

body.v2.vit-v2 .urgency-band {
  background: linear-gradient(90deg, var(--olive-deep), var(--olive));
  color: #fff;
  padding: 22px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

body.v2.vit-v2 .urgency-band strong {
  color: var(--gold-warm);
  font-weight: 700;
}

body.v2.vit-v2 .category-card {
  position: relative;
  overflow: hidden;
}

body.v2.vit-v2 .category-card .body {
  background: linear-gradient(0deg, rgba(20, 30, 18, 0.92), transparent);
  position: absolute;
  inset: auto 0 0 0;
  color: #fff;
  padding: 48px 22px 22px;
}

body.v2.vit-v2 .category-card h3 {
  color: #fff;
}

body.v2.vit-v2 .category-card p {
  color: rgba(255, 255, 255, 0.78);
}

body.v2.vit-v2 .category-card .count {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  background: rgba(200, 164, 109, 0.22);
  color: var(--gold-warm);
  border: 1px solid rgba(200, 164, 109, 0.42);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
}

/* Vitrine v2 — dark mode (cor editorial) */
body.v2.vit-v2 {
  background: #171b15;
  color: #fff;
}

body.v2.vit-v2 .page {
  background: #171b15;
}

body.v2.vit-v2 h2,
body.v2.vit-v2 h3 {
  color: #fff;
}

body.v2.vit-v2 p {
  color: rgba(255, 255, 255, 0.72);
}

body.v2.vit-v2 .nav {
  background: rgba(23, 27, 21, 0.92);
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.v2.vit-v2 .nav-links a {
  color: rgba(255, 255, 255, 0.72);
}

body.v2.vit-v2 .nav-links a:hover {
  color: #fff;
}

body.v2.vit-v2 .logo span {
  color: #fff;
}

body.v2.vit-v2 .commercial-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(200, 164, 109, 0.2), transparent 32%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.03), transparent 60%),
    #171b15;
}

body.v2.vit-v2 .trust-row {
  border-top-color: rgba(255, 255, 255, 0.12);
}

body.v2.vit-v2 .trust-row strong {
  color: var(--gold-warm);
}

body.v2.vit-v2 .trust-row span {
  color: rgba(255, 255, 255, 0.5);
}

body.v2.vit-v2 .section {
  background: #171b15;
}

body.v2.vit-v2 .section:nth-child(even) {
  background: #1c2119;
}

body.v2.vit-v2 .product-card,
body.v2.vit-v2 .info-card {
  background: #20271d;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

body.v2.vit-v2 .product-card .price {
  color: rgba(255, 255, 255, 0.65);
}

body.v2.vit-v2 .eyebrow {
  color: var(--gold-warm);
}

body.v2.vit-v2 .button {
  background: #fff;
  color: var(--olive-deep);
  border-color: #fff;
}

body.v2.vit-v2 .button:hover {
  background: var(--gold-warm);
  border-color: var(--gold-warm);
  color: var(--olive-deep);
}

body.v2.vit-v2 .button.outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

body.v2.vit-v2 .button.outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

body.v2.vit-v2 .recommendations-band {
  background: #1c2119;
}

body.v2.vit-v2 .recommendation-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

body.v2.vit-v2 .contact-band {
  background: #171b15;
}

body.v2.vit-v2 .contact-panel {
  background: #20271d;
  border-color: rgba(255, 255, 255, 0.1);
}

body.v2.vit-v2 .contact-panel p {
  color: rgba(255, 255, 255, 0.72);
}

body.v2.vit-v2 .footer {
  background: #0f130e;
  border-top: 1px solid rgba(200, 164, 109, 0.16);
}

/* Editorial v2 — campanha refinada */
body.v2.edit-v2 {
  font-family: "Inter", system-ui, sans-serif;
  background: #0f120e;
}

body.v2.edit-v2 .editorial-page {
  background: #0f120e;
}

body.v2.edit-v2 h1,
body.v2.edit-v2 h2,
body.v2.edit-v2 h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

body.v2.edit-v2 h1 {
  font-style: italic;
  font-size: clamp(54px, 9vw, 124px);
  line-height: 0.96;
}

body.v2.edit-v2 h2 {
  font-size: clamp(40px, 5.5vw, 72px);
}

body.v2.edit-v2 .editorial-hero {
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.28), transparent 32%),
    radial-gradient(circle at 78% 22%, rgba(200, 164, 109, 0.18), transparent 36%),
    #0f120e;
  min-height: 100vh;
  padding: 0;
  position: relative;
  overflow: hidden;
}

body.v2.edit-v2 .editorial-hero .inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  align-items: stretch;
  min-height: 100vh;
  width: 100%;
  max-width: none;
  padding: 0;
}

body.v2.edit-v2 .editorial-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.16));
}

body.v2.edit-v2 .editorial-hero-photo {
  width: 100%;
  height: 100%;
  max-height: none;
  border: none;
  box-shadow: none;
  object-fit: cover;
  justify-self: stretch;
  filter: contrast(1.04) saturate(1.06);
}

body.v2.edit-v2 .ed-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold-warm);
  font-size: 18px;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  display: block;
}

body.v2.edit-v2 .section-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold-warm);
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

body.v2.edit-v2 .product-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
}

body.v2.edit-v2 .product-card:hover {
  border-color: rgba(200, 164, 109, 0.36);
  background: rgba(200, 164, 109, 0.04);
}

body.v2.edit-v2 .product-card h3 {
  font-size: 28px;
  font-style: italic;
}

body.v2.edit-v2 .product-card .body {
  padding: 24px 22px;
}

body.v2.edit-v2 .button {
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

body.v2.edit-v2 .button:hover {
  background: var(--gold-warm);
  border-color: var(--gold-warm);
  color: var(--olive-deep);
}

body.v2.edit-v2 .nav {
  background: rgba(15, 18, 14, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.v2.edit-v2 .lookbook {
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  align-items: stretch;
}

body.v2.edit-v2 .lookbook img {
  min-height: 600px;
  filter: contrast(1.04) saturate(1.04);
}

body.v2.edit-v2 .lookbook .hero-copy {
  padding: 60px 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  justify-content: center;
}

body.v2.edit-v2 .footer {
  background: #0a0c09;
  border-top: 1px solid rgba(200, 164, 109, 0.18);
}

@media (max-width: 920px) {
  body.v2.inst-v2 .pillars,
  body.v2.vit-v2 .trust-row {
    grid-template-columns: 1fr;
  }

  body.v2.edit-v2 .editorial-hero .inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body.v2.edit-v2 .editorial-hero-copy {
    padding: 64px 24px;
  }

  body.v2.edit-v2 .editorial-hero-photo {
    min-height: 480px;
  }

  body.v2.edit-v2 .lookbook {
    grid-template-columns: 1fr;
  }

  body.v2.edit-v2 .lookbook img {
    min-height: 380px;
  }

  body.v2.edit-v2 .lookbook .hero-copy {
    padding: 40px 24px;
  }
}

/* ============================================================
   Gift Banner
   ============================================================ */
.gift-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #0f130e;
  border-bottom: 1px solid rgba(200, 164, 109, 0.22);
  padding: 10px 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 25;
}

.gift-banner .gift-cta {
  background: var(--gold);
  color: #0f130e;
  padding: 6px 16px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity .18s ease;
}

.gift-banner .gift-cta:hover {
  opacity: .84;
}

.gift-banner .gift-dismiss {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 4px 8px;
  transition: color .15s ease;
}

.gift-banner .gift-dismiss:hover {
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 540px) {
  .gift-banner {
    flex-direction: column;
    gap: 10px;
    padding: 12px 48px 12px 20px;
    text-align: center;
  }
}

/* ============================================================
   Coupon Band
   ============================================================ */
.coupon-band {
  background: #1c2119;
  border-top: 1px solid rgba(200, 164, 109, 0.14);
  border-bottom: 1px solid rgba(200, 164, 109, 0.14);
  padding: 32px 24px;
}

.coupon-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.coupon-info .eyebrow {
  color: var(--gold);
  margin-bottom: 6px;
}

.coupon-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.coupon-code-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.coupon-code {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  background: rgba(200, 164, 109, 0.08);
  border: 1px solid rgba(200, 164, 109, 0.4);
  border-radius: 2px;
  padding: 10px 22px;
  letter-spacing: 0.22em;
  font-variant-numeric: tabular-nums;
  user-select: all;
}

@media (max-width: 600px) {
  .coupon-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .coupon-code {
    font-size: 20px;
  }
}

/* ============================================================
   Category Page
   ============================================================ */
body.v2.vit-v2 .nav-links a.active {
  color: var(--gold-warm);
}

.categoria-header {
  padding: 60px 24px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.categoria-header h1 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 400;
  color: #fff;
  margin: 8px 0 12px;
  letter-spacing: -0.02em;
}

.categoria-header p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px;
  font-size: 15px;
}

.cat-count {
  display: inline-block;
  font-size: 12px;
  color: var(--gold-warm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Filter bar */
.filter-bar-wrap {
  position: sticky;
  top: 78px;
  z-index: 15;
  background: rgba(23, 27, 21, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 24px;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  padding: 7px 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
  font-family: inherit;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.filter-btn.active {
  background: var(--gold-warm);
  border-color: var(--gold-warm);
  color: #0f130e;
  font-weight: 600;
}

.filter-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  padding: 7px 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.4)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.filter-clear {
  background: none;
  border: 1px solid rgba(200, 164, 109, 0.4);
  color: var(--gold-warm);
  border-radius: 2px;
  padding: 7px 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .16s ease;
}

.filter-clear:hover {
  background: rgba(200, 164, 109, 0.08);
}

/* Placeholder card */
.product-placeholder {
  aspect-ratio: 4/5;
  background: #1c2119;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-placeholder .placeholder-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* Empty state */
.empty-state {
  padding: 80px 24px;
  text-align: center;
}

.empty-state p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

/* Troca link inside product card */
.troca-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: color .15s ease;
}

.troca-link:hover {
  color: var(--gold-warm);
  border-bottom-color: var(--gold-warm);
}

/* Footer links */
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 13px;
  transition: color .15s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

/* Category card as link */
a.category-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 640px) {
  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .filter-right {
    width: 100%;
    justify-content: space-between;
  }
}

/* ============================================================
   Policy Page
   ============================================================ */
.politica-page {
  padding: 60px 24px 80px;
}

.politica-inner {
  max-width: 680px;
}

.politica-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.politica-header h1 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  margin: 8px 0 16px;
  letter-spacing: -0.02em;
}

.politica-header .lead {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin: 0;
  line-height: 1.65;
}

.politica-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.politica-section:last-child {
  border-bottom: none;
}

.politica-section h2 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.politica-section p,
.politica-section li {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 10px;
}

.politica-section ul {
  padding-left: 20px;
  margin: 10px 0;
}

.politica-section li {
  margin-bottom: 6px;
}

.politica-section strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.politica-actions {
  margin-top: 20px;
}

.politica-excecoes {
  background: rgba(200, 50, 50, 0.06);
  border: 1px solid rgba(200, 50, 50, 0.16);
  border-radius: 4px;
  padding: 24px;
}

.politica-excecoes h2 {
  color: rgba(220, 100, 80, 0.88);
}

.politica-cta {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(200, 164, 109, 0.18);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.politica-cta p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ============================================================
   Mobile Navigation — hamburger drawer
   ============================================================ */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 40;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: transform .25s ease, opacity .2s ease;
}

.nav-toggle {
  color: var(--olive-dark);
}

body.v2.vit-v2 .nav-toggle {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 14, 11, 0.62);
  z-index: 28;
  opacity: 0;
  animation: nav-fade-in .22s ease forwards;
}

@keyframes nav-fade-in {
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-backdrop {
    animation: none;
    opacity: 1;
  }
  .nav-links {
    transition: none !important;
  }
}

body.nav-locked {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.nav-cta {
  display: none;
}

@media (max-width: 920px) {
  .nav {
    position: sticky;
    top: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    min-height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .nav-actions-desktop {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(86vw, 340px);
    background: #1a2218;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 84px 28px 32px;
    margin: 0;
    z-index: 35;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    box-shadow: -24px 0 48px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
    overscroll-behavior: contain;
    flex-wrap: nowrap;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  body.v2.vit-v2 .nav-links a,
  .nav-links a {
    padding: 16px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
  }

  .nav-links a::after { display: none; }

  .nav-links .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    padding: 14px 18px;
    background: var(--olive);
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: none;
  }

  .nav.dark .nav-toggle {
    border-color: rgba(255,255,255,0.3);
  }
  .nav.dark .nav-toggle span {
    background: #fff;
  }
}

/* ============================================================
   Floating WhatsApp — desktop hide, mobile FAB
   ============================================================ */
@media (min-width: 921px) {
  .floating-whatsapp {
    display: none;
  }
}

@media (max-width: 920px) {
  body.v2.vit-v2 .floating-whatsapp,
  .floating-whatsapp {
    position: fixed;
    left: auto;
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    min-height: 0;
    padding: 0;
    border-radius: 999px;
    font-size: 0;
    background: #25d366;
    color: transparent;
    box-shadow: 0 14px 28px rgba(20, 24, 18, 0.28), 0 4px 8px rgba(20,24,18,0.12);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .floating-whatsapp::before {
    content: "";
    width: 28px;
    height: 28px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M20.52 3.48A11.78 11.78 0 0 0 12.03 0C5.42 0 .06 5.36.06 11.97c0 2.11.55 4.17 1.6 5.99L0 24l6.21-1.63a11.96 11.96 0 0 0 5.82 1.49h.01c6.6 0 11.96-5.36 11.96-11.97 0-3.2-1.24-6.2-3.48-8.41ZM12.04 21.8h-.01a9.94 9.94 0 0 1-5.06-1.39l-.36-.21-3.68.97.98-3.59-.24-.37a9.93 9.93 0 0 1-1.52-5.24c0-5.49 4.47-9.96 9.97-9.96 2.66 0 5.16 1.04 7.04 2.92a9.88 9.88 0 0 1 2.92 7.04c0 5.49-4.47 9.96-9.96 9.96Zm5.47-7.46c-.3-.15-1.77-.87-2.05-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.65.07-.3-.15-1.26-.46-2.4-1.48-.89-.79-1.49-1.77-1.67-2.07-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.67-1.62-.92-2.22-.24-.58-.49-.5-.67-.51l-.57-.01c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.49 0 1.47 1.07 2.89 1.22 3.09.15.2 2.11 3.22 5.11 4.51.71.31 1.27.5 1.7.64.71.23 1.36.2 1.87.12.57-.08 1.77-.72 2.02-1.42.25-.7.25-1.29.17-1.42-.07-.13-.27-.2-.57-.35Z'/></svg>") center/contain no-repeat;
  }
}

/* ============================================================
   Hero photo — better face crop
   ============================================================ */
.commercial-photo img {
  object-position: center 22%;
}

/* ============================================================
   Coupon — hierarchy: code dominant, actions secondary
   ============================================================ */
.coupon-code-block {
  align-items: center;
  gap: 18px;
}

.coupon-code {
  font-size: 32px;
  padding: 14px 28px;
  letter-spacing: 0.22em;
}

.coupon-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.coupon-copy {
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 12px;
  min-height: 44px;
  transition: color .15s ease;
  touch-action: manipulation;
}

.coupon-copy:hover {
  color: #fff;
}

.coupon-use {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 164, 109, 0.4);
  padding-bottom: 2px;
  transition: color .15s ease, border-color .15s ease;
}

.coupon-use:hover {
  color: #fff;
  border-color: var(--gold);
}

@media (max-width: 600px) {
  .coupon-code-block {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 14px;
  }
  .coupon-code {
    font-size: 26px;
    padding: 12px 22px;
  }
}

/* ============================================================
   Trust row — keep 3 columns on mobile (compact)
   ============================================================ */
@media (max-width: 920px) {
  body.v2.vit-v2 .trust-row,
  .trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  body.v2.vit-v2 .trust-row strong,
  .trust-row strong {
    font-size: 22px;
  }
  body.v2.vit-v2 .trust-row span,
  .trust-row span {
    font-size: 11px;
    letter-spacing: 0.04em;
  }
}

/* ============================================================
   Footer — expanded grid
   ============================================================ */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 24px 32px;
  align-items: start;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  margin: 0 0 16px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
  transition: color .15s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

@media (max-width: 920px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 20px 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
