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

:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dim: rgba(201, 168, 76, .15);
  --gold-dark: #9A7A2E;
  --bg: #0D0D0D;
  --bg-2: #141414;
  --bg-3: #1A1A1A;
  --surface: #1F1F1F;
  --border: rgba(201, 168, 76, .18);
  --text: #F0EAE0;
  --muted: #D6D0C4;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
  background: #000;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  cursor: none;
  position: relative;
  overflow-x: hidden;
}

/* ── CONTAINER LARGURA MÁXIMA 1366px ── */
.container {
  max-width: 1366px;
  margin: 0 auto;
  width: 100%;
}


/* ── Touch devices: restore cursor ── */
@media (pointer: coarse) {
  body {
    cursor: auto !important;
  }

  .cursor,
  .cursor-ring {
    display: none !important;
  }
}

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform .15s ease, width .2s ease, height .2s ease, opacity .2s;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform .35s ease, width .25s ease, height .25s ease, opacity .2s;
  opacity: .6;
}

.cursor.hover {
  width: 16px;
  height: 16px;
}

.cursor-ring.hover {
  width: 52px;
  height: 52px;
  opacity: .3;
}

/* ── Grain overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  background: rgba(13, 13, 13, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  width: 100%;
  height: 76px;
}

nav.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, .5);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.nav-logo span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--text);
}

.nav-logo span:last-child {
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active-page {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active-page::after {
  width: 100%;
}

.nav-cta {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: .5rem 1.2rem;
  transition: background .25s, color .25s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--text);
  display: block;
  transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: rgba(13, 13, 13, .98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu ul a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
}

.mobile-menu ul a:hover,
.mobile-menu ul a.active-page {
  color: var(--gold);
}

.mobile-menu .btn-wpp-mobile {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--gold);
  color: var(--bg);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  text-decoration: none;
  transition: background .2s;
}

.mobile-menu .btn-wpp-mobile:hover {
  background: var(--gold-light);
}

/* ── PAGE HERO (catalog/about/contact) ── */
.page-hero {
  padding: calc(76px + 4rem) 5vw 3.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero::before {
  content: attr(data-watermark);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16vw;
  font-weight: 300;
  color: rgba(201, 168, 76, .04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.page-hero-tag {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text);
  margin-top: .75rem;
  line-height: 1.15;
}

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

.page-hero-sub {
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ── HERO ── */
.hero {
  min-height: 0;
  height: 60vh;
  max-height: 750px;
  padding-top: 76px;
  overflow: hidden;
  background: var(--bg);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  height: 100%;
  gap: 4vw;
  align-items: stretch;
  max-width: 1366px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-left: 2vw;
  padding-right: 2vw;
}

.hero-text::before {
  content: 'AG';
  position: absolute;
  top: 10%;
  right: -2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18vw;
  font-weight: 300;
  color: rgba(201, 168, 76, .06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-tag {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s .3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  opacity: 0;
  animation: fadeUp .8s .5s forwards;
}

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

.hero-sub {
  margin-top: 1.5rem;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 400px;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .9s forwards;
}

.btn-primary {
  display: inline-block;
  text-decoration: none;
  background: var(--gold);
  color: var(--white);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  transition: background .25s, transform .2s;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  transition: background .25s, color .25s, transform .2s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

.hero-stats {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
  opacity: 0;
  animation: fadeUp .8s 1.1s forwards;
}

.stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
}

.stat span {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.2s .4s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-right: 2vw;
  padding-top: 4vh;
  padding-bottom: 4vh;
}

.hero-visual-inner {
  width: 100%;
  height: 80%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}

.hero-img-box {
  overflow: hidden;
  position: relative;
  background: var(--bg-3);
  border-radius: 4px;
}

.hero-img-box:first-child {
  grid-column: 1 / 3;
}

.hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.hero-img-box:hover img {
  transform: scale(1.04);
}

.hero-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(13, 13, 13, .9);
  color: var(--white);
  border: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  animation: fadeUp .8s 1.3s forwards;
  opacity: 0;
}

.hero-badge p:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.hero-badge p:last-child {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-top: .3rem;
}

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 8vw;
  overflow: hidden;
  background: var(--bg);
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: .2em;
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  padding: 0 5vw 3.5rem;
}

.section-tag {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ── CATALOG PAGE ── */
#catalogo {
  padding: 4rem 5vw 5rem;
  background: var(--bg);
}

.categories {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.cat-btn {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .55rem 1.4rem;
  border: 1px solid rgba(201, 168, 76, .3);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}

.cat-btn.active,
.cat-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ── HOME CATALOG GRID (4 Cols) ── */
.home-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, .08);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
  border-color: rgba(201, 168, 76, .22);
}

.card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-3);
}

.card-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, opacity .15s ease;
}

.product-card:hover .card-main-img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--bg);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .7rem;
}

.card-badge.novo {
  background: var(--text);
  color: var(--bg);
}

.card-badge.destaque {
  background: var(--gold);
  color: var(--bg);
}

.card-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform .35s ease;
}

.product-card:hover .card-actions {
  transform: translateY(0);
}

.btn-wpp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: #25D366;
  color: var(--white);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .7rem 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.btn-wpp:hover {
  background: #128C7E;
}

.btn-wpp svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, .12);
  color: var(--gold);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .6rem;
  border: 1px solid rgba(201, 168, 76, .3);
  cursor: pointer;
  transition: background .2s;
  backdrop-filter: blur(4px);
  width: 100%;
}

.btn-detail:hover {
  background: rgba(201, 168, 76, .22);
}

.card-info {
  padding: 1.2rem;
}

.card-category {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
}

.card-desc {
  font-size: .8rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: .4rem;
  line-height: 1.6;
}

.price-wrapper {
  margin-top: auto;
  padding-top: 1rem;
}

.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
}

.card-installment {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* ── COLOR PICKER ── */
.color-picker {
  display: flex;
  gap: .5rem;
  align-items: center;
  margin-top: .8rem;
  flex-wrap: wrap;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: transform .2s, box-shadow .2s;
}

.color-dot:hover {
  transform: scale(1.2);
}

.color-dot.active {
  border-color: var(--text);
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--gold);
  transform: scale(1.15);
}

/* Adjust for white/light dots */
.color-dot[data-light="true"].active {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--muted);
}

.color-label {
  font-size: .72rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: .35rem;
}

.color-label strong {
  color: var(--text);
  font-weight: 400;
}

.front-sizes {
  display: flex;
  gap: .4rem;
  margin-top: .5rem;
  flex-wrap: wrap;
}

.size-label {
  font-size: .72rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: .35rem;
}

.size-label-value {
  color: var(--text);
  font-weight: 400;
}

/* ── ABOUT ── */
#sobre {
  padding: 4rem 5vw;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#sobre .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  height: 100%;
  min-height: 280px;
  max-height: 480px;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: 1;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.85) contrast(1.05);
  object-position: center 30%;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text .section-tag {
  color: var(--gold);
  text-align: left;
  margin-bottom: 0.5rem;
}

.about-text .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.about-body {
  margin-top: 0.5rem;
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
}

.about-highlights {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 300;
  letter-spacing: .05em;
  color: rgba(240, 234, 224, .8);
  line-height: 1.4;
}

.about-highlight::before {
  content: '✦';
  color: var(--gold);
  font-size: .8rem;
}

.about-link {
  display: inline-block;
  margin-top: 1.2rem;
  text-decoration: none;
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 168, 76, .3);
  padding-bottom: .2rem;
  transition: border-color .2s;
  align-self: flex-start;
}

.about-link:hover {
  border-color: var(--gold);
}

/* About page specific */
.about-page {
  padding: 5rem 5vw;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}

.value-card:hover {
  border-color: rgba(201, 168, 76, .4);
}

.value-card::before {
  content: attr(data-icon);
  position: absolute;
  bottom: -.5rem;
  right: .5rem;
  font-size: 4rem;
  opacity: .08;
  font-family: serif;
}

.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .6rem;
}

.value-card p {
  font-size: .82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── BANNER ── */
.banner {
  padding: 5rem 8vw;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.banner::before {
  content: '✦';
  position: absolute;
  right: 30%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12rem;
  color: rgba(201, 168, 76, .04);
  pointer-events: none;
  user-select: none;
  font-family: 'Cormorant Garamond', serif;
}

.banner-text {
  color: var(--text);
  position: relative;
  z-index: 1;
}

.banner-text p:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
}

.banner-text p:first-child em {
  font-style: italic;
  color: var(--gold);
}

.banner-text p:last-child {
  font-size: .85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .75);
  margin-top: .5rem;
}

.btn-wpp-lg {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--gold);
  color: var(--bg);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background .2s, transform .2s;
}

.btn-wpp-lg:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-wpp-lg svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ── CONTACT ── */
#contato {
  padding: 5rem 5vw;
  background: var(--bg);
}

#contato .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: .5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.contact-item-text strong {
  display: block;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  margin-bottom: .2rem;
}

.contact-item-text span {
  font-size: .85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.contact-item-text a {
  color: var(--gold);
  text-decoration: none;
}

.contact-map {
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(60%) invert(90%) hue-rotate(180deg);
}

/* ── FOOTER ── */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  color: var(--text);
  padding: 4rem 5vw 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  text-decoration: none;
}

.footer-logo span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  display: block;
}

.footer-logo span:last-child {
  display: block;
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.footer-desc {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: .5rem;
}

.footer-socials a {
  color: var(--gold);
  text-decoration: none;
  font-size: 1.2rem;
  transition: transform .2s;
}

.footer-socials a:hover {
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: .5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 300;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-map iframe {
  width: 100%;
  height: 180px;
  border: 1px solid var(--border);
  filter: grayscale(80%) invert(90%) hue-rotate(180deg);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-2);
  border: 1px solid var(--border);
  max-width: 860px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  transform: translateY(24px);
  transition: transform .35s;
  max-height: 90vh;
  overflow: hidden;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: var(--bg-3);
  cursor: pointer;
  color: var(--muted);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  z-index: 50;
  pointer-events: auto;
}

.modal-close:hover {
  background: var(--gold);
  color: var(--bg);
}

.modal-img {
  overflow: hidden;
}

.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .15s ease;
}

.modal-content {
  padding: 2.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-cat {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}

.modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
}

.modal-desc {
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

.modal-details {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
}

.modal-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
}

.modal-detail span:first-child {
  font-weight: 300;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
}

.modal-detail span:last-child {
  font-weight: 400;
  color: var(--text);
}

.modal-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-top: .5rem;
  display: flex;
  flex-direction: column;
}

.modal-installment {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.modal-color-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.modal-colors {
  display: flex;
  gap: .5rem;
}

.modal-color-label {
  font-size: .78rem;
  color: var(--muted);
}

.modal-color-label strong {
  color: var(--text);
  font-weight: 400;
}

.modal-size-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modal-sizes {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.size-btn {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: 1px;
}

.size-btn:hover {
  background: var(--surface);
}

.size-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.modal-size-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
}

.modal-size-label strong {
  color: var(--text);
  font-weight: 500;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* ── MOBILE ── */
@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    height: auto;
    max-height: none;
    padding-bottom: 3rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    padding: 0 5vw;
    gap: 2rem;
    margin: 0;
  }

  .hero-text {
    padding: 2rem 0 1rem;
    text-align: center;
    align-items: center;
  }

  .hero-text::before {
    display: none;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .home-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-visual {
    height: 65vw;
    width: 100%;
    padding-right: 0;
  }

  #sobre {
    padding: 3rem 5vw;
  }

  #sobre .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-img-wrap {
    display: block;
    min-height: 240px;
  }

  .about-text {
    text-align: center;
  }

  .about-text .section-title {
    text-align: center !important;
  }

  .about-text .section-tag {
    text-align: center !important;
  }

  .about-link {
    align-self: center;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    text-align: left;
  }

  #contato .container {
    grid-template-columns: 1fr;
  }

  .modal {
    grid-template-columns: 1fr;
    max-height: 85vh;
  }

  .modal-img {
    height: 280px;
    display: none;
  }

  .banner {
    padding: 4rem 5vw;
  }

  .banner-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .about-page>.section-header {
    text-align: left;
    padding-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

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

  .categories {
    gap: 0.5rem;
  }

  .cat-btn {
    padding: 0.4rem 1rem;
    font-size: 0.65rem;
  }
}