/* ACQUA MARINE — Costa Dourada */
:root {
  --green-deep: #1A3D2B;
  --green-olive: #3E4A35;
  --green-sage: #5C6B50;
  --gold: #C9922A;
  --gold-light: #D4A843;
  --cream: #F5F0E8;
  --sand: #E8DFD0;
  --warm-white: #FAF8F5;
  --text-dark: #1A3D2B;
  --text-muted: #4A5740;
  --text-faint: #8A9480;
  --border: #D8D0C0;

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Jost', 'Inter', system-ui, -apple-system, sans-serif;
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--warm-white);
  color: var(--text-dark);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* Type utilities */
.serif { font-family: var(--serif); }
.italic { font-style: italic; }
.caps {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 400;
  font-size: 11px;
}
.caps-lg {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 400;
  font-size: 13px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 34px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all .45s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
  border: 1px solid currentColor;
  background: transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--warm-white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}
.btn-outline-light {
  color: var(--cream);
  border-color: rgba(245,240,232,.65);
}
.btn-outline-light:hover {
  background: rgba(245,240,232,.08);
  border-color: var(--cream);
}
.btn-outline-dark {
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.btn-outline-dark:hover {
  background: var(--green-deep);
  color: var(--cream);
}
.btn .arrow {
  width: 20px; height: 1px; background: currentColor; position: relative;
  transition: width .35s ease;
}
.btn .arrow::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 32px; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 22px 48px;
  transition: background .5s ease, padding .5s ease, border-color .5s ease;
  border-bottom: 1px solid transparent;
}
.navbar .nav-right { margin-left: auto; }
.navbar.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 48px;
  border-bottom-color: var(--border);
}
.navbar.on-dark:not(.scrolled) { color: var(--cream); }
.navbar.on-dark:not(.scrolled) .nav-link { color: var(--cream); }
.navbar.on-dark:not(.scrolled) .nav-logo-text { color: var(--cream); }
.navbar.on-dark:not(.scrolled) .nav-logo-sub { color: rgba(245,240,232,.7); }

.nav-links { display: flex; gap: 36px; }
.nav-link {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color .3s;
  cursor: pointer;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width .4s cubic-bezier(.2,.7,.2,1);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }

.nav-logo { display: flex; flex-direction: column; align-items: center; cursor: pointer; gap: 2px; }
.nav-logo-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.24em;
  color: var(--green-deep);
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.4em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.nav-logo-img { display: block; height: 40px; width: auto; max-width: 240px; }
/* Ambos uploadados: por padrão mostra o escuro (fundo claro). */
.nav-logo-img--claro:not(.is-solo) { display: none; }
/* Fundo escuro (home/catálogo, topo sem scroll): mostra o claro. */
.navbar.on-dark:not(.scrolled) .nav-logo-img--claro { display: block; }
.navbar.on-dark:not(.scrolled) .nav-logo-img--escuro:not(.is-solo) { display: none; }
/* Menu mobile aberto — fundo verde-escuro. */
.navbar.menu-open .nav-logo-img--claro { display: block; }
.navbar.menu-open .nav-logo-img--escuro:not(.is-solo) { display: none; }
.nav-right {
  display: flex; justify-content: flex-end; align-items: center; gap: 22px;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--warm-white);
  display: flex; align-items: center; justify-content: center;
  z-index: 90;
  box-shadow: 0 12px 32px rgba(26,61,43,.28), 0 2px 8px rgba(201,146,42,.4);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), background .3s;
}
.wa-float:hover { background: var(--gold-light); transform: translateY(-3px) scale(1.04); }
.wa-float svg { width: 26px; height: 26px; }

/* Sections */
section { position: relative; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.section-label::before {
  content: ''; width: 28px; height: 1px; background: currentColor;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }

/* Placeholder imagery (used when no real photo present) */
.ph {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg,
      rgba(26,61,43,.04) 0 2px,
      transparent 2px 14px),
    linear-gradient(180deg, var(--sand), var(--cream));
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.ph.dark {
  background:
    repeating-linear-gradient(135deg,
      rgba(245,240,232,.04) 0 2px,
      transparent 2px 14px),
    linear-gradient(180deg, #0e2419, #1A3D2B);
  color: rgba(245,240,232,.5);
}
.ph.portrait {
  background:
    repeating-linear-gradient(135deg,
      rgba(26,61,43,.05) 0 2px,
      transparent 2px 18px),
    radial-gradient(ellipse at 50% 35%, #bcae97 0%, #7f7564 55%, #3a362c 100%);
  color: rgba(245,240,232,.55);
}

/* Footer floating WhatsApp offset on product pages */
.page { min-height: 100vh; }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}
/* Admin bar do WP empurra 32/46px — descontar para o hero caber no viewport. */
body.admin-bar .hero { height: calc(100vh - 32px); }
@media screen and (max-width: 782px) {
  body.admin-bar .hero { height: calc(100vh - 46px); }
}

.hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 140px 72px 64px;
  overflow: hidden;
}
.hero-right {
  position: relative;
  overflow: hidden;
  background: #0a0a08;
}
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: heroSlowZoom 18s ease-in-out infinite alternate;
}
@keyframes heroSlowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-photo-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,61,43,.15) 0%, transparent 30%, transparent 60%, rgba(0,0,0,.45) 100%),
    linear-gradient(270deg, transparent 60%, rgba(26,61,43,.35) 100%);
  pointer-events: none;
}

/* Caustic animated light on dark side */
.caustics {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .55;
  mix-blend-mode: screen;
}
.caustics::before,
.caustics::after {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 40% 30% at 30% 40%, rgba(201,146,42,.25), transparent 60%),
    radial-gradient(ellipse 25% 35% at 70% 60%, rgba(212,168,67,.18), transparent 65%),
    radial-gradient(ellipse 30% 20% at 55% 20%, rgba(245,240,232,.08), transparent 70%);
  filter: blur(30px);
  animation: drift 18s ease-in-out infinite alternate;
}
.caustics::after {
  animation-duration: 24s;
  animation-direction: alternate-reverse;
  opacity: .6;
}
@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(4%, -3%) scale(1.08); }
  100% { transform: translate(-3%, 4%) scale(1.02); }
}

/* Water ripple lines */
.ripples {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 45%;
  pointer-events: none;
  opacity: .18;
}
.ripples svg { width: 100%; height: 100%; }
.ripple-line { stroke: var(--gold-light); fill: none; stroke-width: 0.6; }

/* Hero title */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 36px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px; background: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0;
}
.hero-title .line {
  display: block;
  overflow: visible;
  padding-bottom: 0.08em;
}
.hero-title .line span {
  display: inline-block;
  animation: riseUp 1.1s cubic-bezier(.2,.7,.2,1) both;
}
.hero-title .line:nth-child(2) span { animation-delay: .12s; }
.hero-title .accent {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
@keyframes riseUp {
  from { transform: translateY(108%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(245,240,232,.82);
  max-width: 440px;
  margin: 28px 0 0;
  line-height: 1.45;
  animation: fadeIn 1.4s ease .6s both;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px);} to {opacity:1; transform:none;} }

.hero-cta-row {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 44px;
  animation: fadeIn 1.2s ease .9s both;
}

/* Hero meta bottom left */
.hero-meta {
  display: flex;
  gap: 54px;
  align-items: flex-end;
  padding-top: 32px;
  border-top: 1px solid rgba(245,240,232,.14);
  color: rgba(245,240,232,.75);
}
.hero-meta-item {
  display: flex; flex-direction: column; gap: 6px;
}
.hero-meta-item .num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.hero-meta-item .lbl {
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
}

/* Seahorse watermark */
.seahorse-mark {
  position: absolute;
  right: -70px; top: 50%;
  transform: translateY(-50%);
  width: 520px; height: 520px;
  opacity: .07;
  pointer-events: none;
}
.seahorse-mark svg { width: 100%; height: 100%; }
.seahorse-mark path, .seahorse-mark line {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1;
}

/* Hero right side: big seahorse silhouette and editorial crop */
.hero-right-inner {
  position: absolute;
  inset: 0;
}
.hero-portrait {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 55% 40%, #6b6a60 0%, #2b2b24 45%, #0a0a08 100%);
}
.hero-portrait::before {
  /* subtle hatch pattern to suggest portrait */
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(115deg,
      rgba(245,240,232,.04) 0 1px,
      transparent 1px 9px);
  mix-blend-mode: overlay;
}

/* Animated golden seahorse in the dark side */
.seahorse-hero {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62%;
  max-width: 460px;
  aspect-ratio: 1 / 1.25;
}
.seahorse-hero svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 12px 40px rgba(201,146,42,.35));
}
.seahorse-float { animation: gentleFloat 7s ease-in-out infinite; transform-origin: 50% 50%; }
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(1.4deg); }
}

.bubbles {
  position: absolute; inset: 0; pointer-events: none;
}
.bubble {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(212,168,67,.55);
  box-shadow: 0 0 8px rgba(212,168,67,.6);
  animation: rise 7s linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(20px) scale(.6); opacity: 0; }
  15%  { opacity: .8; }
  100% { transform: translateY(-110vh) scale(1); opacity: 0; }
}

.hero-tag-right {
  position: absolute;
  right: 40px; bottom: 40px;
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  max-width: 320px;
  text-align: right;
  line-height: 1.4;
  text-shadow: 0 1px 8px rgba(0,0,0,.55), 0 0 32px rgba(0,0,0,.35);
}
.hero-tag-right::before {
  content: '✦';
  display: block;
  color: var(--gold);
  font-style: normal;
  margin-bottom: 10px;
  font-size: 14px;
}

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  z-index: 5;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245,240,232,.7);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollHint 2.4s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Marquee --- */
.marquee {
  background: var(--green-deep);
  color: var(--gold);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,146,42,.18);
  border-bottom: 1px solid rgba(201,146,42,.18);
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee-track .dot { color: var(--gold-light); font-style: normal; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* --- Coleções (Joias / Semi Joias split) --- */
.collections {
  padding: 140px 72px;
  background: var(--warm-white);
}
.collections-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 72px;
  gap: 40px;
}
.collections-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.95;
  color: var(--green-deep);
  margin: 12px 0 0;
}
.collections-title em { color: var(--gold); font-style: italic; font-weight: 300; }

.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #EFE7D8;
  display: flex;
  flex-direction: column;
}
.collection-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #EFE7D8;
}
.collection-card .ph,
.collection-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  background: #EFE7D8;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.collection-card:hover .ph,
.collection-card:hover .collection-card-img { transform: scale(1.03); }

.collection-card-veil { display: none; }

.collection-card-body {
  position: relative;
  padding: 32px 36px 36px;
  background: var(--green-deep);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid rgba(245,240,232,.12);
}
.collection-card-body .caps { color: var(--gold-light); margin-bottom: 10px; }
.collection-card-body h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1;
  color: var(--cream);
  margin: 0 0 14px;
}
.collection-card-body h3 em { font-style: italic; color: var(--gold); }
.collection-card-body p {
  max-width: 440px;
  margin: 0 0 20px;
  font-size: 14px;
  color: rgba(245,240,232,.82);
  line-height: 1.6;
}
.collection-card-link {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color .3s;
}
.collection-card:hover .collection-card-link { color: var(--gold); }
.collection-card-body .caps { color: var(--gold-light); margin-bottom: 8px; }
.collection-card-body h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: 1;
  margin: 0 0 16px;
}
.collection-card-body h3 em { font-style: italic; color: var(--gold); }
.collection-card-body p {
  max-width: 340px;
  margin: 0 0 28px;
  font-size: 14px;
  color: rgba(245,240,232,.85);
  line-height: 1.55;
}
.collection-card-link {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.collection-card-link .arrow {
  width: 24px; height: 1px; background: currentColor; position: relative;
  transition: width .35s ease;
}
.collection-card-link .arrow::after {
  content: ''; position: absolute; right: 0; top: -3px; width: 7px; height: 7px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.collection-card:hover .collection-card-link .arrow { width: 40px; }

/* --- Editorial Section --- */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.editorial.oceano {
  background: #EFE7D8;
  align-items: stretch;
}
.editorial-left { position: relative; overflow: hidden; background: #EFE7D8; }
.editorial-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #EFE7D8;
}
.editorial-right {
  background: var(--green-deep);
  color: var(--cream);
  padding: 96px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.editorial-right h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.02;
  margin: 20px 0 28px;
}
.editorial-right h2 em { font-style: italic; color: var(--gold); }
.editorial-right p {
  max-width: 460px;
  color: rgba(245,240,232,.78);
  line-height: 1.7;
  font-size: 15px;
}
.editorial-right .caps-lg { color: var(--gold); }
.editorial-right .btn { margin-top: 40px; align-self: flex-start; }

.editorial-spiral {
  position: absolute;
  right: -40px; bottom: -40px;
  width: 320px; height: 320px;
  opacity: .18;
  pointer-events: none;
}

/* --- Categorias (big italic list) --- */
.categories {
  background: var(--green-deep);
  color: var(--cream);
  padding: 140px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.categories::before, .categories::after {
  content: '✦';
  position: absolute;
  color: var(--gold);
  font-size: 22px;
}
.categories::before { top: 80px; left: 80px; }
.categories::after  { bottom: 80px; right: 80px; }

.categories-label { color: var(--gold-light); margin-bottom: 40px; display: inline-block; }
.categories-list {
  display: flex; flex-direction: column; gap: 4px;
  margin: 24px 0;
}
.cat-item {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 1.1;
  color: var(--cream);
  transition: color .4s ease, letter-spacing .4s ease;
  cursor: pointer;
  position: relative;
  display: inline-block;
  align-self: center;
}
.cat-item:hover { color: var(--gold); letter-spacing: .01em; }
.cat-item::before {
  content: '—';
  position: absolute;
  left: -60px; top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: var(--gold);
  font-style: normal;
  transition: opacity .3s ease, transform .4s ease;
}
.cat-item:hover::before { opacity: 1; transform: translateY(-50%) translateX(10px); }

/* --- História --- */
.historia {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--cream);
}
.historia-img { position: relative; overflow: hidden; }
.historia-body {
  padding: 110px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.historia-body h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(38px, 4vw, 62px);
  color: var(--green-deep);
  margin: 18px 0 28px;
  line-height: 1.05;
}
.historia-body p {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 18px;
  max-width: 460px;
  font-size: 15px;
}
.historia-sig {
  margin-top: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}

/* --- Footer --- */
.footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 96px 80px 36px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,240,232,.14);
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
  font-weight: 400;
}
.footer-col ul,
.footer-col ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}
.footer-col li::marker { content: ''; }
.footer-col a {
  display: block;
  color: rgba(245,240,232,.8);
  font-size: 13px;
  margin-bottom: 12px;
  transition: color .3s;
  cursor: pointer;
}
.footer-col a:hover { color: var(--gold); }
.footer-brand {
  display: flex; flex-direction: column; gap: 16px;
  align-items: center;
  text-align: center;
}
.footer-brand .brand-mark {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: .22em;
  color: var(--cream);
}
.footer-brand .brand-logo {
  display: block;
  max-height: 56px;
  width: auto;
}
.footer-brand p {
  color: rgba(245,240,232,.7);
  line-height: 1.6;
  max-width: 300px;
  font-size: 13px;
  margin: 0;
}

.newsletter {
  display: flex; border-bottom: 1px solid rgba(245,240,232,.3);
  max-width: 320px;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 0;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 13px;
}
.newsletter input::placeholder { color: rgba(245,240,232,.5); }
.newsletter input:focus { outline: none; border-bottom-color: var(--gold); }
.newsletter button {
  padding: 10px 4px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(245,240,232,.55);
  font-size: 11px;
  letter-spacing: .1em;
}

/* --- Generic page hero (for Joias / Semi Joias / etc) --- */
.page-hero {
  position: relative;
  height: 68vh;
  min-height: 500px;
  background: var(--green-deep);
  color: var(--cream);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.page-hero .caustics { opacity: .35; }
.page-hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 64px;
}
.page-hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(64px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 20px 0 0;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(245,240,232,.8);
  font-size: 18px;
  margin-top: 18px;
  max-width: 560px;
  margin-inline: auto;
}

/* --- Sub-category tabs --- */
.subcats {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.subcats-inner {
  display: flex;
  justify-content: center;
  gap: 44px;
  padding: 22px 40px;
}
.subcat-tab {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 2px;
  position: relative;
  transition: color .3s;
}
.subcat-tab::after {
  content: ''; position: absolute;
  left: 0; bottom: -2px;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width .4s cubic-bezier(.2,.7,.2,1);
}
.subcat-tab:hover { color: var(--gold); }
.subcat-tab.active { color: var(--gold); }
.subcat-tab.active::after { width: 100%; }

/* Product grid */
.products-wrap { padding: 80px 72px 140px; }
.products-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 56px;
  flex-wrap: wrap; gap: 24px;
}
.products-head h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--green-deep);
  margin: 10px 0 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
.product-card {
  cursor: pointer;
  display: flex; flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeIn .8s cubic-bezier(.2,.7,.2,1) both;
}
.product-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
}
.product-card-img .ph {
  position: absolute; inset: 0;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-card-img .ph { transform: scale(1.05); }
.product-card-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold);
  color: var(--warm-white);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.product-card-view {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  padding: 12px;
  text-align: center;
  background: rgba(26,61,43,.85);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s cubic-bezier(.2,.7,.2,1);
  backdrop-filter: blur(4px);
}
.product-card:hover .product-card-view { opacity: 1; transform: translateY(0); }

.product-card-info { padding: 0 4px; }
.product-card-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--green-deep);
  margin: 0 0 4px;
}
.product-card-meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--text-faint);
  text-transform: uppercase;
}

/* --- Product detail --- */
.pdp {
  padding: 120px 72px 96px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  background: var(--warm-white);
}
.pdp-gallery { display: flex; gap: 16px; }
.pdp-thumbs {
  display: flex; flex-direction: column; gap: 12px;
  width: 84px;
  flex-shrink: 0;
}
.pdp-thumb {
  aspect-ratio: 1;
  background: var(--cream);
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color .3s;
  position: relative; overflow: hidden;
}
.pdp-thumb.active { border-color: var(--gold); }
.pdp-thumb .ph { position: absolute; inset: 0; font-size: 8px; }
.pdp-main {
  flex: 1;
  aspect-ratio: 3/4;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.pdp-main .ph { position: absolute; inset: 0; }

.pdp-info { padding-top: 28px; }
.pdp-crumbs {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 24px;
}
.pdp-crumbs a { color: var(--text-faint); transition: color .3s; cursor: pointer; }
.pdp-crumbs a:hover { color: var(--gold); }
.pdp-crumbs .sep { margin: 0 8px; color: var(--border); }

.pdp-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 52px;
  line-height: 1.05;
  color: var(--green-deep);
  margin: 0 0 14px;
}
.pdp-title em { font-style: italic; color: var(--gold); }

.pdp-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 36px;
  max-width: 460px;
}
.pdp-divider {
  height: 1px; background: var(--border); margin: 32px 0;
}
.pdp-spec {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px 28px;
  margin-bottom: 32px;
}
.pdp-spec dt {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  padding-top: 4px;
}
.pdp-spec dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text-dark);
}

.pdp-diff {
  background: var(--cream);
  border-left: 2px solid var(--gold);
  padding: 24px 28px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 16px;
  margin: 0 0 40px;
}

.pdp-wa {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--green-deep);
  color: var(--cream);
  padding: 20px 36px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  transition: all .4s cubic-bezier(.2,.7,.2,1);
}
.pdp-wa:hover { background: var(--gold); color: var(--warm-white); }
.pdp-wa svg { width: 20px; height: 20px; }

.pdp-extra {
  display: flex; gap: 28px; margin-top: 24px;
  color: var(--text-faint);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.pdp-extra span { display: flex; align-items: center; gap: 8px; }
.pdp-extra svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.3; }

/* Sobre page */
.sobre-hero {
  padding: 180px 80px 80px;
  text-align: center;
  background: var(--warm-white);
}
.sobre-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 7vw, 108px);
  color: var(--green-deep);
  margin: 14px 0 24px;
  line-height: 1.02;
}
.sobre-hero h1 em { font-style: italic; color: var(--gold); }
.sobre-hero p {
  max-width: 620px;
  margin: 0 auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.55;
}
.sobre-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.sobre-dual .ph, .sobre-dual img { aspect-ratio: 4/5; }
.sobre-block {
  padding: 96px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.sobre-block.dark {
  background: var(--green-deep);
  color: var(--cream);
}
.sobre-block.dark h2 em { color: var(--gold); }
.sobre-block h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  margin: 18px 0 24px;
}
.sobre-block h2 em { font-style: italic; }
.sobre-block p {
  line-height: 1.75;
  max-width: 460px;
  font-size: 15px;
  color: inherit;
  opacity: .85;
  margin: 0 0 16px;
}
.sobre-values {
  padding: 120px 80px;
  background: var(--cream);
}
.sobre-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}
.val-card {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.val-card .num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
}
.val-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  color: var(--green-deep);
  margin: 0 0 14px;
}
.val-card p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 14px;
  margin: 0;
}

/* Contato */
.contato-wrap {
  padding: 160px 80px 120px;
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}
.contato-left h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 6vw, 92px);
  color: var(--green-deep);
  margin: 16px 0 28px;
  line-height: 1;
}
.contato-left h1 em { font-style: italic; color: var(--gold); }
.contato-left p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.5;
  max-width: 440px;
}
.contato-info {
  margin-top: 56px;
  display: flex; flex-direction: column; gap: 32px;
}
.contato-info-item {
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.contato-info-item .label { color: var(--gold); margin-bottom: 10px; }
.contato-info-item .val {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--green-deep);
}

.contato-form {
  background: var(--cream);
  padding: 56px 48px;
  display: flex; flex-direction: column; gap: 28px;
}
.contato-form h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  color: var(--green-deep);
  margin: 0 0 6px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.field input, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text-dark);
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 96px; }

/* Tweaks panel */
.tweaks-panel {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 95;
  background: var(--warm-white);
  color: var(--text-dark);
  padding: 22px 24px 20px;
  border: 1px solid var(--border);
  width: 280px;
  box-shadow: 0 20px 40px rgba(26,61,43,.18);
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h5 {
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.tweak-row { margin-bottom: 16px; }
.tweak-row label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.tweak-choices { display: flex; flex-wrap: wrap; gap: 6px; }
.tweak-choices button {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: all .25s;
}
.tweak-choices button.active, .tweak-choices button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --------- Hamburger button --------- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px 2px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform .35s ease, opacity .25s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Navbar state when mobile menu is open */
.navbar.menu-open {
  background: var(--green-deep) !important;
  border-bottom-color: transparent !important;
  color: var(--cream);
}
.navbar.menu-open .nav-logo-text { color: var(--cream); }
.navbar.menu-open .nav-logo-sub  { color: rgba(245,240,232,.7); }

/* --------- Mobile full-screen menu --------- */
.nav-mobile-menu[hidden] { display: none !important; }
.nav-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--green-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  animation: menuReveal .35s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes menuReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.nav-mobile-links a {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(42px, 11vw, 68px);
  color: var(--cream);
  cursor: pointer;
  transition: color .3s;
  line-height: 1.25;
}
.nav-mobile-links a:hover { color: var(--gold); }
.nav-mobile-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .3s;
}
.nav-mobile-wa:hover { color: var(--gold-light); }

/* --------- Responsive --------- */
@media (max-width: 980px) {
  /* Navbar — em mobile fica no fluxo, sobre fundo claro; força texto/ícone escuros
     para sobrepor a regra .on-dark:not(.scrolled) do desktop. */
  .navbar,
  .navbar.on-dark:not(.scrolled) { color: var(--text-dark); }
  .navbar.on-dark:not(.scrolled) .nav-link { color: var(--text-muted); }
  .navbar.on-dark:not(.scrolled) .nav-logo-text { color: var(--green-deep); }
  .navbar.on-dark:not(.scrolled) .nav-logo-sub  { color: var(--text-faint); }
  /* Em mobile a navbar fica sobre fundo claro, então reverte o toggle do logo
     exceto quando o menu full-screen está aberto. */
  .navbar.on-dark:not(.scrolled):not(.menu-open) .nav-logo-img--claro:not(.is-solo) { display: none; }
  .navbar.on-dark:not(.scrolled):not(.menu-open) .nav-logo-img--escuro { display: block; }
  .nav-hamburger { color: var(--green-deep); }
  .navbar.menu-open .nav-hamburger { color: var(--cream); }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    position: relative;
  }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-links { display: none; }
  .nav-right { display: flex; align-items: center; gap: 8px; }
  .nav-right .nav-link { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { grid-template-columns: 1fr; height: auto; min-height: 100svh; }
  .hero-right { height: 52vh; order: -1; }
  .hero-left { padding: 96px 28px 48px; }
  .hero-meta { gap: 24px; padding-top: 24px; }
  .hero-meta-item .num { font-size: 30px; }
  .hero-tag-right { right: 20px; bottom: 20px; font-size: 16px; max-width: 240px; }

  /* Collections */
  .collections { padding: 72px 28px; }
  .collections-head { grid-template-columns: 1fr; margin-bottom: 40px; }
  .collections-grid { grid-template-columns: 1fr; }

  /* Editorial */
  .editorial { grid-template-columns: 1fr; }
  .editorial-left { min-height: 320px; }
  .editorial-photo { object-fit: cover; }
  .editorial-right { padding: 56px 28px; }

  /* Categories */
  .categories { padding: 80px 28px; }
  .categories::before { top: 36px; left: 28px; }
  .categories::after  { bottom: 36px; right: 28px; }

  /* História */
  .historia { grid-template-columns: 1fr; }
  .historia-img { min-height: 360px; }
  .historia-body { padding: 60px 28px; }

  /* Products */
  .products-wrap { padding: 60px 20px 100px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }

  /* Subcategory tabs */
  .subcats-inner { gap: 20px; overflow-x: auto; padding: 16px 20px; justify-content: flex-start; }

  /* PDP */
  .pdp { grid-template-columns: 1fr; padding: 100px 20px 60px; gap: 32px; }
  .pdp-gallery { flex-direction: column-reverse; }
  .pdp-thumbs { flex-direction: row; width: auto; }
  .pdp-thumb { width: 64px; }
  .pdp-title { font-size: clamp(32px, 8vw, 52px); }
  .pdp-wa { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 64px 28px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Sobre */
  .sobre-hero { padding: 120px 28px 60px; }
  .sobre-dual { grid-template-columns: 1fr; direction: ltr; }
  .sobre-block { padding: 56px 28px; direction: ltr; }
  .sobre-values { padding: 80px 28px; }
  .sobre-values-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Contato */
  .contato-wrap { grid-template-columns: 1fr; padding: 120px 28px 80px; gap: 48px; }
  .contato-form { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn { padding: 14px 24px; font-size: 10px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px 8px; }
  .page-hero { min-height: 420px; }
  .page-hero-body { padding-top: 48px; }
  .pdp-spec { grid-template-columns: 110px 1fr; }
}
