:root {
  --gold: #D4AF37;
  --gold2: #F2D388;
  --gold-dark: #8A6E2F;
  --black: #070707;
  --dark: #0f0f0f;
  --dark2: #161616;
  --dark3: #1e1e1e;
  --white: #f5f0e8;
  --green: #009c3b;
  --yellow: #ffdf00;
  --blue: #002776;
  --radius: 12px;
  --transition: all 0.35s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* NOISE TEXTURE OVERLAY */
.noise-overlay, .hero-noise {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* LOADER */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
}
.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: var(--gold);
  letter-spacing: 8px;
  animation: pulse 1.2s ease-in-out infinite;
}
.loader-logo span { color: var(--white); font-size: 1.2rem; letter-spacing: 12px; display: block; text-align: center; }
.loader-bar { width: 200px; height: 3px; background: #222; border-radius: 99px; overflow: hidden; }
.loader-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold2)); animation: load 1.8s ease forwards; }
@keyframes load { from { width: 0 } to { width: 100% } }
@keyframes pulse { 0%,100% { opacity:1 } 50% { opacity:.5 } }
.loader-hidden { opacity: 0; pointer-events: none; transition: opacity 0.6s ease; }

/* NAV */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 0 5%;
  background: rgba(7,7,7,0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 120px; transition: var(--transition); }
.nav-scrolled .nav-inner { height: 70px; }
.nav-logo { cursor: pointer; display: flex; align-items: center; }
.nav-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.7));
  transition: var(--transition);
}
.nav-scrolled .nav-logo-img { height: 50px; }
.nav-logo-img:hover { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.7)); transform: scale(1.05); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--white); text-decoration: none; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.gold-link { color: var(--gold) !important; font-weight: 800 !important; border-bottom: 2px solid var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang-switcher, .currency-switcher { display: flex; gap: 4px; }
.lang-switcher button, .currency-switcher button { background: none; border: 1px solid rgba(201,168,76,0.3); color: var(--white); padding: 4px 8px; border-radius: 4px; cursor: pointer; font-size: 0.7rem; font-weight: 600; transition: var(--transition); }
.lang-switcher button:hover, .currency-switcher button:hover { border-color: var(--gold); color: var(--gold); }
.lang-switcher button.active, .currency-switcher button.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.cart-icon {
  font-size: 2rem;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
#cart-count {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 900;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--black);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.cart-icon:hover { transform: scale(1.1); background: rgba(212, 175, 55, 0.2); border-color: var(--gold); box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--gold); }

#mobile-menu {
  display: none; flex-direction: column; gap: 0;
  position: fixed; top: 120px; left: 0; width: 100%; z-index: 999;
  background: var(--dark); border-bottom: 1px solid rgba(201,168,76,0.2);
}
#mobile-menu a { padding: 16px 5%; color: var(--white); text-decoration: none; font-weight: 600; letter-spacing: 2px; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
#mobile-menu.open { display: flex; }

/* HERO VIDEO */
.hero-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* FASHION OVERLAYS CONTAINER */
.fashion-overlays {
  position: absolute; inset: 0;
  z-index: 5;
  pointer-events: none;
}

/* 1. NEW COLLECTION BADGE */
.overlay-badge {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #D4AF37, #F2D388);
  color: #000;
  padding: 12px 40px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 4px;
  border-radius: 50px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  animation: badgePulse 2s ease-in-out infinite;
}
.new-badge {
  animation: slideDown 1s ease, badgePulse 2s ease-in-out infinite 1s;
}
@keyframes slideDown {
  from { transform: translateX(-50%) translateY(-50px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.5); }
  50% { box-shadow: 0 0 50px rgba(212, 175, 55, 0.8); }
}

/* 2. SHOP NOW BUTTON */
.overlay-shop-btn {
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #D4AF37, #F2D388);
  color: #000;
  padding: 18px 50px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 3px;
  border-radius: 4px;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.4);
  animation: fadeIn 1.5s ease 0.5s both;
}
.overlay-shop-btn:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.6);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* 3. FLOATING PRICE BADGES */
.price-badge {
  position: absolute;
  background: rgba(0,0,0,0.8);
  color: #D4AF37;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 800;
  border: 2px solid #D4AF37;
  border-radius: 8px;
  animation: floatPrice 4s ease-in-out infinite;
}
.price-1 { top: 35%; left: 15%; animation-delay: 0s; }
.price-2 { top: 40%; right: 15%; animation-delay: 1s; }
.price-3 { top: 55%; left: 20%; animation-delay: 2s; }
@keyframes floatPrice {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

/* 4. MODEL SILHOUETTE */
.model-silhouette {
  position: absolute;
  bottom: 100px;
  right: 60px;
  width: 150px;
  height: auto;
  opacity: 0.4;
  animation: modelFloat 5s ease-in-out infinite;
}
@keyframes modelFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.02); }
}

/* 5. PAIXÃO BRASILEIRA TEXT */
.paixao-text {
  position: absolute;
  bottom: 120px;
  left: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #D4AF37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  letter-spacing: 3px;
  animation: textGlow 3s ease-in-out infinite;
}
@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
  50% { text-shadow: 0 0 40px rgba(212, 175, 55, 0.8); }
}

/* 6. SWIPE HINT */
.swipe-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 3px;
  animation: bounceHint 2s ease infinite;
}
@keyframes bounceHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* 7. FASHION ICONS LEFT */
.fashion-icon-left {
  position: absolute;
  top: 45%;
  left: 30px;
  font-size: 2.5rem;
  opacity: 0.6;
  animation: iconBounce 3s ease-in-out infinite;
}
.fashion-icon-left-2 {
  position: absolute;
  top: 60%;
  left: 50px;
  font-size: 2rem;
  opacity: 0.4;
  animation: iconBounce 3s ease-in-out infinite 0.5s;
}
@keyframes iconBounce {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

/* 8. FASHION ICONS RIGHT */
.fashion-icon-right {
  position: absolute;
  top: 45%;
  right: 30px;
  font-size: 2.5rem;
  opacity: 0.6;
  animation: iconBounceRight 3s ease-in-out infinite;
}
.fashion-icon-right-2 {
  position: absolute;
  top: 60%;
  right: 50px;
  font-size: 2rem;
  opacity: 0.4;
  animation: iconBounceRight 3s ease-in-out infinite 0.5s;
}
@keyframes iconBounceRight {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(-10px) rotate(-5deg); }
}

/* RESPONSIVE FASHION OVERLAYS */
@media (max-width: 900px) {
  .overlay-badge { font-size: 0.7rem; padding: 10px 25px; top: 120px; }
  .overlay-shop-btn { bottom: 160px; padding: 14px 35px; font-size: 0.85rem; }
  .price-badge { font-size: 0.75rem; padding: 6px 12px; }
  .paixao-text { font-size: 1rem; }
  .model-silhouette { width: 100px; right: 30px; }
  .fashion-icon-left, .fashion-icon-right { font-size: 1.8rem; }
  .fashion-icon-left-2, .fashion-icon-right-2 { font-size: 1.5rem; }
}

@media (max-width: 600px) {
  .price-badge { display: none; }
  .fashion-icon-left, .fashion-icon-right { display: none; }
  .model-silhouette { width: 80px; bottom: 80px; }
  .paixao-text { font-size: 0.8rem; left: 20px; bottom: 80px; }
}

/* BRAZIL FLAG OVERLAY - Groter en zichtbaarder */
.brazil-flag-overlay {
  position: absolute;
  bottom: 80px;
  right: 40px;
  width: 280px;
  height: auto;
  z-index: 10;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(0, 156, 59, 0.6), 0 0 100px rgba(255, 223, 0, 0.3);
  animation: flagWave 2s ease-in-out infinite;
  border: 3px solid rgba(212, 175, 55, 0.5);
}

@keyframes flagWave {
  0%, 100% { transform: rotate(-3deg) translateX(-5px); }
  50% { transform: rotate(3deg) translateX(5px); }
}

@media (max-width: 900px) {
  .brazil-flag-overlay {
    width: 180px;
    bottom: 50px;
    right: 20px;
  }
}

@media (max-width: 600px) {
  .brazil-flag-overlay {
    width: 120px;
    bottom: 30px;
    right: 10px;
  }
}

/* HERO - FULL SCREEN BACKGROUND */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-image-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.1); }
  100% { transform: scale(1.25); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(7,7,7,0.7) 0%,
    rgba(7,7,7,0.4) 50%,
    rgba(7,7,7,0.85) 100%
  );
  z-index: 1;
}
.hero-noise {
  position: absolute; inset: 0;
  z-index: 2;
  opacity: 0.04;
}
.particles { position: absolute; inset: 0; overflow: hidden; z-index: 2; }

.hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 120px 20px 80px;
  max-width: 900px;
}
.hero-tag { font-size: 0.75rem; letter-spacing: 6px; color: var(--gold); font-weight: 700; margin-bottom: 24px; animation: fadeUp 0.8s ease both 0.3s; }
.hero-logo-wrap {
  margin: 0 auto 32px;
  animation: fadeUp 0.8s ease both 0.5s;
  display: flex;
  justify-content: center;
}

.hero-logo-img {
  width: clamp(320px, 65vw, 600px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.5));
  animation: logoGlow 5s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.6)); transform: scale(1.02); }
}
.hero-sub { font-size: 1rem; color: rgba(245,240,232,0.7); line-height: 1.8; margin: 24px 0 40px; animation: fadeUp 0.8s ease both 0.7s; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.8s ease both 0.9s; }

.btn-gold {
  display: inline-block;
  padding: 14px 36px; border-radius: 2px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--black); font-weight: 800; font-size: 0.8rem;
  letter-spacing: 3px; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(201,168,76,0.3);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(201,168,76,0.5); }

.btn-outline {
  display: inline-block;
  padding: 14px 36px; border-radius: 2px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 3px; text-transform: uppercase; text-decoration: none;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

.hero-stats { display: flex; gap: 48px; justify-content: center; margin-top: 60px; animation: fadeUp 0.8s ease both 1.1s; }
.stat { text-align: center; }
.stat-num { display: inline-block; font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--gold); }
.stat-suffix { display: inline-block; font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--gold); margin-left: 2px; }
.stat > span:last-child { display: block; font-size: 0.7rem; letter-spacing: 2px; color: rgba(245,240,232,0.6); text-transform: uppercase; margin-top: 4px; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: var(--gold); font-size: 1.5rem; animation: bounce 2s ease infinite; z-index: 3; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0) } 50% { transform: translateX(-50%) translateY(10px) } }
@keyframes fadeUp { from { opacity:0; transform: translateY(30px) } to { opacity:1; transform: translateY(0) } }

/* HERO ORIGINAL ORBS (kept as fallback decoration) */
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }

/* MARQUEE */
.marquee-bar { background: linear-gradient(135deg, var(--gold), var(--gold2)); overflow: hidden; padding: 14px 0; }
.marquee-track { display: flex; gap: 40px; animation: marquee 25s linear infinite; white-space: nowrap; }
.marquee-track span { color: var(--black); font-weight: 800; font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase; }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* SECTIONS */
section { padding: 100px 5%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { font-size: 0.7rem; letter-spacing: 6px; color: var(--gold); font-weight: 700; text-transform: uppercase; margin-bottom: 12px; display: block; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 16px; }
.section-header p { color: rgba(245,240,232,0.6); font-size: 0.95rem; }

/* FILTERS */
.filters { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 10px 24px; border-radius: 2px;
  background: transparent; border: 1px solid rgba(201,168,76,0.3);
  color: var(--white); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* PRODUCTS */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; max-width: 1400px; margin: 0 auto; }

.product-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.4); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }

.product-img {
  width: 100%; aspect-ratio: 4/5; overflow: hidden;
  background: linear-gradient(135deg, var(--dark3), #252520);
  position: relative; display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1), opacity 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.1); }

/* Blur-up lazy loading */
.product-img .img-blur {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(20px);
  transform: scale(1.1);
  opacity: 1;
  transition: opacity 0.5s ease;
}
.product-img .img-blur.loaded { opacity: 0; }
.product-img .img-main {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.product-img .img-main.loaded { opacity: 1; }

.product-img .img-zoom-hint {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(7,7,7,0.7);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.product-card:hover .img-zoom-hint { opacity: 1; }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--black);
  padding: 4px 10px; border-radius: 2px;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  z-index: 2;
}
.product-badge.new { background: var(--green); color: #fff; }
.product-badge.hot { background: #e03; color: #fff; }

.product-info { padding: 20px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.product-desc { color: rgba(245,240,232,0.5); font-size: 0.8rem; margin-bottom: 12px; line-height: 1.6; }
.product-price { font-size: 1.3rem; font-weight: 800; color: var(--gold); margin-bottom: 16px; }
.product-price .old-price { font-size: 0.85rem; color: rgba(245,240,232,0.3); text-decoration: line-through; margin-left: 8px; font-weight: 400; }

.product-sizes { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.size-btn { padding: 4px 10px; border: 1px solid rgba(201,168,76,0.3); background: none; color: var(--white); font-size: 0.7rem; cursor: pointer; border-radius: 2px; transition: var(--transition); }
.size-btn:hover, .size-btn.selected { background: var(--gold); color: var(--black); border-color: var(--gold); }

.add-to-cart { width: 100%; padding: 12px; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--black); font-weight: 800; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; transition: var(--transition); }
.add-to-cart:hover { opacity: 0.85; transform: scale(1.02); }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  animation: lightboxIn 0.3s ease;
  cursor: default;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 2rem; cursor: pointer;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  z-index: 2;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.lightbox-close:hover { background: var(--gold); color: var(--black); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: none; color: #fff;
  font-size: 3rem; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border-radius: 50%;
  transition: var(--transition);
  z-index: 2;
}
.lightbox-nav:hover { background: var(--gold); color: var(--black); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
  position: absolute; bottom: 24px;
  left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  letter-spacing: 2px;
  background: rgba(0,0,0,0.5);
  padding: 8px 16px;
  border-radius: 99px;
}

/* PARALLAX SECTIONS */
.parallax-section {
  position: relative;
  overflow: hidden;
}
.parallax-section > .promo-bg-wrap,
.parallax-section > .sobre-bg-wrap {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.parallax-section .promo-bg-img,
.parallax-section .sobre-bg-img {
  width: 100%; height: 120%;
  object-fit: cover;
  will-change: transform;
}
.parallax-section .promo-bg-overlay,
.parallax-section .sobre-bg-overlay {
  position: absolute; inset: 0;
}
.promo-bg-overlay {
  background: linear-gradient(135deg, rgba(7,7,7,0.85) 0%, rgba(7,7,7,0.5) 50%, rgba(7,7,7,0.85) 100%);
}
.sobre-bg-overlay {
  background: linear-gradient(90deg, rgba(7,7,7,0.92) 0%, rgba(7,7,7,0.6) 100%);
}
.parallax-section .section-header,
.parallax-section .sobre-grid,
.parallax-section .promo-inner {
  position: relative; z-index: 1;
}

/* PROMO BANNER */
.promo-banner {
  padding: 120px 5%;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.promo-inner { position: relative; z-index: 1; }
.promo-tag { color: var(--gold); font-size: 0.7rem; letter-spacing: 8px; font-weight: 700; margin-bottom: 16px; display: block; }
.promo-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; margin-bottom: 16px; }
.promo-inner p { color: rgba(245,240,232,0.7); font-size: 1rem; margin-bottom: 40px; }

/* SOBRE */
.sobre-section { position: relative; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.sobre-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; }
.sobre-badge { font-size: 5rem; text-align: center; grid-column: 1/-1; margin-bottom: 8px; animation: float 4s ease-in-out infinite; }
.sobre-card { background: rgba(22,22,22,0.85); backdrop-filter: blur(8px); border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius); padding: 24px; text-align: center; transition: var(--transition); }
.sobre-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.sobre-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 12px; }
.sobre-card h3 { font-family: 'Playfair Display', serif; font-size: 0.95rem; margin-bottom: 8px; }
.sobre-card p { font-size: 0.75rem; color: rgba(245,240,232,0.6); line-height: 1.6; }
.sobre-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 24px; }
.sobre-text p { color: rgba(245,240,232,0.7); line-height: 1.8; margin-bottom: 20px; }

/* GARIMPO SPECIAL STYLE */
.garimpo-section {
  background: radial-gradient(circle at center, #1a1a10 0%, var(--black) 100%);
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.garimpo-section .section-header h2 {
  color: var(--gold);
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}
.garimpo-section .product-card {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}
.garimpo-section .product-card::before {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0.3;
  pointer-events: none;
}
.garimpo-section .product-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}
.garimpo-section .product-badge {
  background: linear-gradient(135deg, #ffd700, #b8860b);
  color: #000;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* SWIMLINE SPECIAL STYLE */
.swimline-section {
  background: radial-gradient(circle at center, #0a1a2a 0%, var(--black) 100%);
  position: relative;
  border-top: 1px solid rgba(0, 150, 255, 0.2);
  border-bottom: 1px solid rgba(0, 150, 255, 0.2);
}
.swimline-section .section-header h2 {
  color: #4fc3ff;
  text-shadow: 0 0 30px rgba(79, 195, 255, 0.4);
}
.swimline-section .section-tag {
  color: #4fc3ff;
}
.swimline-section .product-card {
  border-color: rgba(79, 195, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}
.swimline-section .product-card::before {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #4fc3ff, transparent, #4fc3ff) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0.3;
  pointer-events: none;
}
.swimline-section .product-card:hover {
  border-color: #4fc3ff;
  box-shadow: 0 0 50px rgba(79, 195, 255, 0.2);
}
.swimline-section .product-badge {
  background: linear-gradient(135deg, #4fc3ff, #0288d1);
  color: #000;
  box-shadow: 0 0 15px rgba(79, 195, 255, 0.5);
}

@keyframes float { 0%,100% { transform: translateY(0) scale(1) } 50% { transform: translateY(-10px) scale(1.02) } }

/* PAYMENT */
.payment-section { background: var(--black); }
.payment-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto 40px; }
.pay-card { background: var(--dark2); border: 1px solid rgba(201,168,76,0.1); border-radius: var(--radius); padding: 36px 24px; text-align: center; transition: var(--transition); }
.pay-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(201,168,76,0.1); }
.pay-icon { font-size: 2.5rem; margin-bottom: 16px; }
.wise-icon {
  font-family: 'Montserrat', sans-serif;
  color: #9fe870;
  font-weight: 900;
  font-size: 1.8rem;
  background: #163300;
  width: 56px; height: 56px;
  line-height: 56px;
  border-radius: 12px;
  margin: 0 auto 16px;
}
.pay-card-wise:hover { border-color: #9fe870; box-shadow: 0 12px 40px rgba(159, 232, 112, 0.12); }
.pay-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 8px; }
.pay-card p { font-size: 0.8rem; color: rgba(245,240,232,0.6); }
.security-badges { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.security-badges span { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); padding: 8px 20px; border-radius: 99px; font-size: 0.75rem; color: var(--gold); }

/* TESTIMONIALS */
.testimonials { background: var(--dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.testi-card { background: var(--dark2); border: 1px solid rgba(201,168,76,0.1); border-radius: var(--radius); padding: 32px; transition: var(--transition); }
.testi-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testi-card p { color: rgba(245,240,232,0.8); line-height: 1.8; font-size: 0.9rem; margin-bottom: 20px; font-style: italic; }
.testi-author { font-size: 0.8rem; color: var(--gold); font-weight: 700; }

/* CONTATO */
.contato-section { background: var(--black); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1000px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form textarea {
  background: var(--dark2); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius); padding: 14px 18px;
  color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
  transition: var(--transition); resize: none;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 20px rgba(212,175,55,0.1); }
.contact-form button { align-self: flex-start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { font-size: 1.5rem; }
.contact-item strong { display: block; color: var(--gold); margin-bottom: 4px; font-size: 0.85rem; }
.contact-item p { color: rgba(245,240,232,0.7); font-size: 0.85rem; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn { padding: 10px 20px; border: 1px solid rgba(201,168,76,0.3); border-radius: 2px; color: var(--gold); text-decoration: none; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; transition: var(--transition); }
.social-btn:hover { background: var(--gold); color: var(--black); }

/* FOOTER */
footer { background: var(--dark); border-top: 1px solid rgba(201,168,76,0.1); padding: 60px 5%; text-align: center; }
.footer-logo { margin-bottom: 16px; display: flex; justify-content: center; }
.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 0 16px rgba(201,168,76,0.4));
}
footer p { color: rgba(245,240,232,0.5); font-size: 0.8rem; margin-top: 8px; }
.footer-copy { margin-top: 32px !important; color: rgba(245,240,232,0.3) !important; font-size: 0.72rem !important; }

/* CART */
.cart-sidebar {
  position: fixed;
  top: 0; right: -600px;
  width: 550px;
  height: 100%;
  background: var(--black);
  z-index: 4000;
  padding: 0;
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -30px 0 80px rgba(0,0,0,1);
  border-left: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open { right: 0; }

.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 32px 40px; border-bottom: 1px solid rgba(212, 175, 55, 0.2); flex-shrink: 0; }
.cart-header h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; letter-spacing: 2px; color: var(--gold); }
.cart-header button { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--white); font-size: 1.2rem; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.cart-header button:hover { background: var(--gold); color: var(--black); transform: rotate(90deg); }
#cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-item {
  display: flex; gap: 24px; padding: 32px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  align-items: center;
  transition: var(--transition);
}
.cart-item:hover { background: rgba(212, 175, 55, 0.03); }
.cart-item-icon { 
  font-size: 2rem; background: var(--dark2); 
  width: 100px; height: 125px; 
  display: flex; align-items: center; justify-content: center; 
  border-radius: 4px; flex-shrink: 0; overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
}
.cart-item-icon img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cart-item:hover .cart-item-icon img { transform: scale(1.1); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info strong { display: block; font-size: 1.2rem; margin-bottom: 8px; color: #fff; font-family: 'Playfair Display', serif; }
.cart-item-info span { font-size: 0.9rem; color: rgba(245,240,232,0.6); letter-spacing: 1px; }
.cart-item-price { color: var(--gold); font-weight: 800; font-size: 1.4rem; margin-right: 20px; flex-shrink: 0; font-family: 'Playfair Display', serif; }
.cart-item-remove { background: none; border: none; color: rgba(255,255,255,0.3); cursor: pointer; font-size: 1rem; padding: 12px; flex-shrink: 0; transition: var(--transition); }
.cart-item-remove:hover { color: #e03; transform: scale(1.2); }

.cart-footer { padding: 40px; border-top: 1px solid rgba(212, 175, 55, 0.3); background: var(--black); flex-shrink: 0; }
.cart-total-wrap { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 32px; }
.total-label { font-size: 1.1rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 2px; }
.cart-total { font-size: 2.5rem; font-weight: 900; color: var(--gold); font-family: 'Playfair Display', serif; }
.cart-footer .btn-gold { width: 100%; text-align: center; display: block; padding: 24px; font-size: 1rem; letter-spacing: 4px; }
#cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 3999; display: none; backdrop-filter: blur(8px); }
#cart-overlay.open { display: block; }

/* WHATSAPP FLOATING */
.whatsapp-float {
  position: fixed; bottom: 24px; left: 24px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

/* BACK TO TOP */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 999;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: 1.3rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.5);
}

/* TOAST */
#toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--black); padding: 14px 32px;
  border-radius: 4px; font-weight: 800; font-size: 0.85rem;
  z-index: 9999; transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
  opacity: 0;
}
#toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* PARTICLES (kept from original) */
.particle {
  position: absolute; border-radius: 50%;
  background: var(--gold); opacity: 0.4;
  animation: rise linear infinite;
}
@keyframes rise { 0% { transform: translateY(100vh) scale(0); opacity:0.4 } 100% { transform: translateY(-100px) scale(1); opacity:0 } }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .sobre-grid, .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { gap: 24px; }
  .cart-sidebar { width: 100%; right: -100%; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 2rem; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .sobre-card { backdrop-filter: none; background: var(--dark2); }
  .whatsapp-float { width: 48px; height: 48px; bottom: 16px; left: 16px; }
  .back-to-top { width: 40px; height: 40px; bottom: 16px; right: 16px; }
}
@media (max-width: 600px) {
  section { padding: 60px 5%; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-info { padding: 12px; }
  .product-name { font-size: 0.9rem; }
  .product-desc { font-size: 0.7rem; }
  .cart-item-icon { width: 50px; height: 50px; font-size: 1.5rem; }
}
