/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #654321;
  background-color: #e6e0d6;
  background-image: url('../images/bg-pattern.jpg');
  background-size: 300px;
  background-repeat: repeat;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== VARS ===== */
:root {
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dark: #a07d30;
  --cream: #e6e0d6;
  --dark: #1a1a1a;
  --gray: #6b6b6b;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --transition: 0.3s ease;
  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.25);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--dark);
  color: var(--gold-light);
  padding: 10px 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}
.announcement-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.announcement-track span {
  white-space: nowrap;
  padding-right: 80px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(230,224,214,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  position: relative;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-left a, .nav-right a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #654321;
  font-weight: 500;
  position: relative;
}
.nav-left a::after, .nav-right a:not(.nav-icon)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-left a:hover::after, .nav-right a:not(.nav-icon):hover::after { width: 100%; }
.nav-icon { display: flex; align-items: center; }
.nav-icon:hover svg { stroke: var(--gold); }

/* LOGO */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-img {
  height: 42px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--dark);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--dark);
  transition: all var(--transition);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-white {
  display: inline-block;
  padding: 14px 36px;
  background: var(--white);
  color: #654321;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--white);
  transition: all var(--transition);
}
.btn-white:hover { background: transparent; color: var(--white); }
.full-width { width: 100%; text-align: center; }

/* ===== SECTION COMMON ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: #654321;
  line-height: 1.2;
}
.section-header h2 em { font-style: italic; color: var(--gold-dark); }

/* ===== HERO ===== */
.hero {
  width: 100%;
  height: 100svh;
  min-height: 500px;
  overflow: hidden;
  position: relative;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-text {
  position: absolute;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  padding: 0 24px;
  z-index: 2;
}
.hero-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 10px;
}
.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 300;
  color: #654321;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-text h1 em { font-style: italic; color: var(--gold-dark); }
.hero-cta {
  display: inline-block;
  padding: 11px 32px;
  background: var(--dark);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all var(--transition);
}
.hero-cta:hover { background: var(--gold); color: var(--white); }

/* ===== NAV DROPDOWN ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-trigger svg { transition: transform 0.25s; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: all 0.2s ease;
  z-index: 500;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #654321;
  transition: background 0.15s, color 0.15s;
  text-transform: none;
  font-weight: 400;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--gold-dark); }
.dropdown-divider { height: 1px; background: rgba(201,168,76,0.15); margin: 6px 0; }
.dropdown-destaque {
  color: var(--gold-dark) !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
}

.hero-colecao-btn {
  position: absolute;
  left: 28%;
  top: 75%;
  background: rgba(155, 122, 93, 0.9);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 64px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.55);
  cursor: pointer;
  display: inline-block;
  transition: background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.hero-colecao-btn:hover {
  background: rgba(140, 108, 78, 1);
  border-color: rgba(255,255,255,0.9);
}
@media (max-width: 768px) {
  .hero-colecao-btn {
    left: 5%;
    top: 76%;
    font-size: 11px;
    padding: 14px 32px;
  }
}

@media (max-width: 768px) {
  .hero { height: 62svh; min-height: 340px; }
  .hero-img { object-position: 18% 22%; }
  .hero-text { top: 6%; }
  .hero-text h1 { font-size: clamp(22px, 6vw, 32px); }
  .nav-dropdown-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    border-left: none;
    border-right: none;
  }
  .nav-dropdown:hover .nav-dropdown-menu { transform: none; }
}

/* ===== COLEÇÃO CASAMENTO ===== */
.colecao-casamento {
  background: rgba(230,224,214,0.88);
  padding: 80px 0 72px;
}
.casamento-topo {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  margin-bottom: 52px;
}
.casamento-topo h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: #654321;
  line-height: 1.15;
  margin-bottom: 16px;
  margin-top: 10px;
}
.casamento-topo h2 em { font-style: italic; color: var(--gold-dark); }
.casamento-sub {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}
.casamento-cards {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.casamento-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201,168,76,0.25);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  background: var(--white);
}
.casamento-card:hover { border-color: rgba(201,168,76,0.6); transform: translateY(-4px); box-shadow: var(--shadow); }
.casamento-card.featured { border-color: rgba(201,168,76,0.5); }
.casamento-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cc-namoro     { background: #e6e0d6; }
.cc-noivado    { background: #e6e0d6; }
.cc-casamento  { background: #e6e0d6; }
.cc-personalizado { background: #e6e0d6; }
.cc-icon { opacity: 0.9; }
.cc-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.casamento-card:hover .cc-photo { transform: scale(1.05); }
.casamento-card-info {
  padding: 20px;
  background: var(--white);
}
.casamento-card-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: #654321;
  margin-bottom: 4px;
}
.casamento-card.featured .casamento-card-info h4 { color: var(--gold-dark); }
.casamento-card-info p {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.5;
}
.cc-ver {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
}

/* ===== CATEGORIAS ===== */
.categorias { padding: 100px 0; background: rgba(230,224,214,0.88); }
.categorias-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.categoria-card {
  text-align: center;
  cursor: pointer;
}
.categoria-img {
  height: 280px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform var(--transition);
}
.categoria-card:hover .categoria-img { transform: scale(1.02); }
.cat-aneis { background: linear-gradient(135deg, #1a1209, #2d1f05); }
.cat-colares { background: linear-gradient(135deg, #0d1117, #1a2030); }
.cat-brincos { background: linear-gradient(135deg, #17120d, #2a1f12); }
.cat-pulseiras { background: linear-gradient(135deg, #0d1a17, #122a24); }
.cat-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.15) 0%, transparent 70%);
}
.cat-gem { opacity: 0.8; animation: gemFloat 4s ease-in-out infinite; }
.categoria-card.featured { position: relative; }
.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 600;
  z-index: 2;
}
.categoria-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
}
.categoria-card p { font-size: 12px; color: var(--gray); letter-spacing: 0.05em; margin-bottom: 10px; }
.cat-link {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.cat-link:hover { color: var(--gold-dark); }

/* ===== COLECOES ===== */
.colecoes { padding: 100px 0; }
.colecoes-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}
.colecao-main {
  background: var(--dark);
  overflow: hidden;
  position: relative;
}
.colecao-visual {
  height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.colecao-aurora {
  background: #0d0d0d;
  overflow: hidden;
}
.aurora-ring-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.75;
  display: block;
}
.aurora-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  pointer-events: none;
}
.colecao-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.colecao-art {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gem-center {
  border-radius: 50%;
  background: radial-gradient(circle, #fff8e1, #c9a84c, #8b6914);
  box-shadow: 0 0 40px rgba(201,168,76,0.6), 0 0 80px rgba(201,168,76,0.3);
  animation: gemPulse 3s ease-in-out infinite;
}
.gem-center.large { width: 60px; height: 60px; }
.gem-center.small { width: 40px; height: 40px; }
.gem-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  animation: orbitSpin linear infinite;
}
.orbit-1 { width: 120px; height: 120px; animation-duration: 8s; }
.orbit-2 { width: 180px; height: 180px; animation-duration: 14s; animation-direction: reverse; }
.orbit-1::before, .orbit-2::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(201,168,76,0.8);
}
.sparkle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(232,213,163,0.8);
  animation: sparkleFade 2s ease-in-out infinite;
}
.s1 { top: 10%; left: 20%; animation-delay: 0s; }
.s2 { top: 80%; left: 75%; animation-delay: 0.5s; }
.s3 { top: 30%; right: 15%; animation-delay: 1s; }
.s4 { bottom: 20%; left: 30%; animation-delay: 1.5s; }
.colecao-info {
  padding: 40px;
  color: var(--white);
}
.colecao-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.colecao-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  margin-bottom: 16px;
}
.colecao-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}
.colecoes-side { display: flex; flex-direction: column; gap: 24px; }
.colecao-card {
  display: flex;
  gap: 0;
  overflow: hidden;
  background: var(--cream);
  transition: box-shadow var(--transition);
}
.colecao-card:hover { box-shadow: var(--shadow-gold); }
.colecao-visual-sm {
  width: 140px;
  min-width: 140px;
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.colecao-eternidade { background: linear-gradient(135deg, #1a1209, #2d1f05); }
.colecao-botanica { background: linear-gradient(135deg, #0d1a0d, #122a12); }
.colecao-vintage { background: linear-gradient(135deg, #1a0d0d, #2a1212); }
.colecao-card-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.colecao-card-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}
.colecao-card-info p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 10px;
}
.colecao-card-info a {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Flor botânica */
.flower-art { position: relative; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
.petal {
  position: absolute;
  width: 14px; height: 26px;
  background: rgba(201,168,76,0.4);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform-origin: center bottom;
  border: 1px solid rgba(201,168,76,0.6);
}
.p1 { transform: rotate(0deg) translateY(-14px); }
.p2 { transform: rotate(60deg) translateY(-14px); }
.p3 { transform: rotate(120deg) translateY(-14px); }
.p4 { transform: rotate(180deg) translateY(-14px); }
.p5 { transform: rotate(240deg) translateY(-14px); }
.p6 { transform: rotate(300deg) translateY(-14px); }
.flower-center { width: 14px; height: 14px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 10px rgba(201,168,76,0.7); z-index: 1; }
.vintage-art { position: relative; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
.v-diamond {
  width: 30px; height: 30px;
  background: rgba(201,168,76,0.2);
  border: 2px solid rgba(201,168,76,0.7);
  transform: rotate(45deg);
}
.v-ring {
  position: absolute;
  width: 50px; height: 50px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
}

/* ===== PRODUTOS ===== */
.produtos { padding: 100px 0; background: rgba(230,224,214,0.88); }
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 32px;
  row-gap: 48px;
}
.produto-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.produto-img {
  position: relative;
  height: 300px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.produto-card:hover .produto-img { border-color: rgba(201,168,76,0.4); }
.produto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.produto-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--dark);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  font-weight: 600;
}
.produto-badge.sale { background: var(--gold-dark); }
.produto-hover-btn {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 0;
  text-align: center;
  cursor: pointer;
}
.produto-card:hover .produto-hover-btn { opacity: 1; }
.produto-hover-btn button { display: none; }
.pm-hover-circle {
  width: 58px;
  height: 58px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pm-hover-circle svg { width: 26px; height: 26px; }
.pm-hover-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
.produto-colecao {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.produto-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px;
}
.produto-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.produto-info .produto-preco,
.produto-info .preco-grupo {
  margin-top: auto;
  padding-top: 8px;
}
.produto-material { font-size: 11px; color: var(--gray); margin-bottom: 8px; }
.produto-img-foto { background: #f8f5f0; }
.produto-img-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }

.produto-code-img {
  position: absolute; top: 10px; right: 12px; z-index: 2;
  font-size: 10px; color: rgba(0,0,0,0.35); letter-spacing: 0.06em;
  font-family: 'Montserrat', sans-serif; font-weight: 500;
  background: rgba(255,255,255,0.7); padding: 2px 6px; border-radius: 4px;
}

/* ===== CHECKOUT MODAL ===== */
.checkout-box { max-width: 440px; width: 100%; }
.checkout-label { font-size: 11px; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; text-transform: uppercase; margin-bottom: 4px; }
.checkout-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-bottom: 4px; }
.checkout-preco {
  font-size: 18px;
  font-weight: 600;
  color: #654321;
  margin-bottom: 2px;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}
.checkout-preco::after {
  content: 'à vista';
  font-size: 10px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.04em;
  align-self: center;
}
.checkout-code { font-size: 11px; color: #bbb; margin-bottom: 20px; }
.checkout-pergunta { font-size: 13px; font-weight: 600; margin-bottom: 12px; color: #444; }
.checkout-opcoes { display: flex; flex-direction: column; gap: 10px; }
.checkout-opcao {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border: 1.5px solid #e0e0e0; border-radius: 12px;
  background: #fff; cursor: pointer; text-align: left; transition: all 0.2s;
}
.checkout-opcao:hover, .checkout-opcao.selected { border-color: var(--gold); background: #fdf8ee; }
.checkout-opcao-icon { font-size: 24px; }
.checkout-opcao div { display: flex; flex-direction: column; }
.checkout-opcao strong { font-size: 14px; font-weight: 600; }
.checkout-opcao span { font-size: 12px; color: #888; margin-top: 2px; }
.checkout-info-entrega { display: flex; flex-direction: column; gap: 16px; }
.checkout-msg { background: #faf8f3; border: 1px solid #e8dcc8; border-radius: 12px; padding: 16px; font-size: 13px; line-height: 1.6; }
.checkout-msg-icon { display: none; }
.checkout-icon-entrega { width: 22px; height: 22px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='1.5'%3E%3Crect x='1' y='3' width='15' height='13'/%3E%3Cpolygon points='16 8 20 8 23 11 23 16 16 16 16 8'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; display: inline-block; }
.checkout-icon-retirada { width: 22px; height: 22px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='1.5'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; display: inline-block; }
.checkout-msg strong { display: block; margin-bottom: 8px; font-size: 14px; }
.checkout-msg ul { padding-left: 4px; list-style: none; display: flex; flex-direction: column; gap: 4px; margin: 8px 0; }
.checkout-wa-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: #25D366 !important; border-color: #25D366 !important; font-size: 14px; }
.checkout-wa-btn:hover { background: #1da851 !important; }
.checkout-voltar { background: none; border: none; color: #888; font-size: 13px; cursor: pointer; text-align: left; padding: 0; }
.checkout-voltar:hover { color: var(--gold); }
.produto-preco {
  font-size: 16px;
  font-weight: 600;
  color: #654321;
  letter-spacing: 0.02em;
}
.produto-preco::after {
  content: ' à vista';
  font-size: 10px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.produto-preco.sem-avista::after { display: none; }
.preco-grupo { display: flex; gap: 10px; align-items: center; }
.produto-parcela {
  font-size: 10px;
  color: var(--gray);
  margin-top: 3px;
  letter-spacing: 0.02em;
}
.produto-pix {
  font-size: 10px;
  color: #7a5c2e;
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.01em;
}
.produto-preco-old {
  font-size: 13px;
  color: var(--gray);
  text-decoration: line-through;
}
.produto-preco-parcel {
  font-size: 12px;
  color: var(--gray);
  font-weight: 400;
  margin-top: 2px;
}
/* ===== COLEÇÃO 2026 ===== */
.colecao-2026 { padding: 60px 0 80px; background: #faf8f5; }
.colecao-2026-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) { .colecao-2026-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .colecao-2026-grid { grid-template-columns: 1fr; } }
.colecao-2026-banner-wrap {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  position: relative;
}
.colecao-2026-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.colecao-2026-header { text-align: center; padding: 56px 0 36px; }
.colecao-2026-sub {
  margin-top: 12px;
  color: var(--gray);
  font-size: 15px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .colecao-2026-banner-wrap { max-height: 260px; }
}

.ver-mais { text-align: center; margin-top: 50px; }
.ver-mais .btn-outline {
  color: #654321;
  border-color: #654321;
}
.ver-mais .btn-outline:hover { background: var(--dark); color: var(--white); }

/* Jewelry Art SVGs */
.produto-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
}
.ring-band {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 8px solid #c9a84c;
  box-shadow: 0 0 20px rgba(201,168,76,0.3), inset 0 0 20px rgba(201,168,76,0.1);
  position: relative;
}
.ring-stone {
  position: absolute;
  top: -18px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 22px;
  background: radial-gradient(circle at 35% 35%, #fff, #a8d4ff, #5599cc);
  clip-path: polygon(50% 0%, 100% 35%, 80% 100%, 20% 100%, 0% 35%);
  box-shadow: 0 4px 15px rgba(100,180,255,0.5);
}
.ring-sparkle {
  position: absolute;
  top: -28px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px white;
  animation: sparkleFade 1.5s ease-in-out infinite;
}
.chain {
  position: absolute;
  top: 30px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 90px;
  background: linear-gradient(to bottom, transparent, #c9a84c, #c9a84c, transparent);
}
.pingente-diamond {
  position: absolute;
  bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px;
  background: radial-gradient(circle at 35% 35%, #fff, #a8d4ff, #3366aa);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  box-shadow: 0 4px 20px rgba(100,150,255,0.4);
}
.argola {
  width: 55px; height: 55px;
  border-radius: 50%;
  border: 6px solid #c9a84c;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1), transparent);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.argola.left { margin-right: -10px; }
.argola.right { margin-left: -10px; }
.tennis-band {
  width: 150px; height: 10px;
  background: linear-gradient(to right, #c9a84c, #e8d5a3, #c9a84c);
  border-radius: 5px;
  position: relative;
}
.tennis-stone {
  position: absolute;
  width: 14px; height: 14px;
  background: radial-gradient(circle at 35% 35%, #fff, #a8d4ff, #5599cc);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  box-shadow: 0 2px 8px rgba(100,180,255,0.4);
}
.ts1 { left: 10px; } .ts2 { left: 35px; } .ts3 { left: 60px; } .ts4 { left: 85px; } .ts5 { left: 110px; }

/* ===== PERSONALIZAÇÃO ===== */
.personalizacao {
  background: var(--cream);
  padding: 100px 0;
}
.personalizacao-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.personalizacao-img {
  position: relative;
}
.personalizacao-img img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.personalizacao-img::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  z-index: 0;
  pointer-events: none;
}
.personalizacao-img img { position: relative; z-index: 1; }
.personalizacao-texto h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 300;
  color: #654321;
  line-height: 1.15;
  margin-bottom: 20px;
}
.personalizacao-texto h2 em { font-style: italic; color: var(--gold-dark); }
.personalizacao-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
}
.personalizacao-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.personalizacao-lista li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #654321;
  line-height: 1.5;
}
.lista-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.personalizacao-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ===== BANNER LUXO ===== */
.banner-luxo {
  background: linear-gradient(135deg, #4a2800, #3b1f00, #5c3200);
  min-height: 450px;
  display: flex;
  align-items: stretch;
}
.banner-content {
  flex: 1;
  padding: 80px 80px 80px 120px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
}
.banner-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.banner-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
}
.banner-content h2 em { font-style: italic; color: var(--gold-light); }
.banner-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}
.banner-visual {
  width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.banner-gem-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-gem {
  position: absolute;
  border-radius: 50%;
  animation: gemPulse 3s ease-in-out infinite;
}
.bg1 {
  width: 80px; height: 80px;
  background: radial-gradient(circle, #fff8e1, #c9a84c, #8b6914);
  box-shadow: 0 0 60px rgba(201,168,76,0.6), 0 0 120px rgba(201,168,76,0.3);
}
.bg2 {
  width: 140px; height: 140px;
  border: 1px solid rgba(201,168,76,0.3);
  animation: orbitSpin 10s linear infinite;
}
.bg3 {
  width: 190px; height: 190px;
  border: 1px solid rgba(201,168,76,0.15);
  animation: orbitSpin 16s linear infinite reverse;
}
.banner-sparkle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: sparkleFade 2s ease-in-out infinite;
}
.bs1 { width: 4px; height: 4px; top: 10%; left: 20%; animation-delay: 0s; }
.bs2 { width: 3px; height: 3px; top: 80%; left: 70%; animation-delay: 0.4s; }
.bs3 { width: 5px; height: 5px; top: 40%; right: 10%; animation-delay: 0.8s; }
.bs4 { width: 3px; height: 3px; bottom: 15%; left: 25%; animation-delay: 1.2s; }
.bs5 { width: 4px; height: 4px; top: 20%; right: 25%; animation-delay: 1.6s; }
.bs6 { width: 3px; height: 3px; bottom: 30%; right: 15%; animation-delay: 2s; }

/* ===== DIFERENCIAIS ===== */
.diferenciais { padding: 80px 0; border-top: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(201,168,76,0.15); }
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.diferencial {
  text-align: center;
  background: #fff;
  border-radius: 4px;
  padding: 32px 24px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.diferencial h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #654321;
}
.diferencial p { font-size: 13px; color: #654321; line-height: 1.6; }
  width: 72px; height: 72px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--cream);
  transition: all var(--transition);
}
.diferencial:hover .dif-icon {
  background: var(--dark);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.diferencial:hover .dif-icon svg path, .diferencial:hover .dif-icon svg circle,
.diferencial:hover .dif-icon svg rect, .diferencial:hover .dif-icon svg line,
.diferencial:hover .dif-icon svg polyline { stroke: var(--gold-light); }

/* ===== SOBRE ===== */
.sobre { padding: 100px 0; background: var(--cream); }
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-visual {}
.sobre-frame {
  height: 460px;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sobre-frame::before {
  content: '';
  position: absolute; inset: 16px;
  border: 1px solid rgba(201,168,76,0.3);
  pointer-events: none;
  z-index: 1;
}
.sobre-art { position: relative; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; }
.s-diamond {
  position: absolute;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5);
  transform: rotate(45deg);
  animation: gemFloat 5s ease-in-out infinite;
}
.d1 { width: 60px; height: 60px; animation-delay: 0s; }
.d2 { width: 40px; height: 40px; top: 20%; left: 65%; animation-delay: 0.5s; opacity: 0.6; }
.d3 { width: 30px; height: 30px; bottom: 25%; left: 10%; animation-delay: 1s; opacity: 0.4; }
.s-line {
  position: absolute;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.5), transparent);
  height: 1px;
}
.l1 { width: 120px; top: 30%; left: 50%; transform: translateX(-50%) rotate(-30deg); }
.l2 { width: 80px; bottom: 30%; left: 50%; transform: translateX(-50%) rotate(20deg); }
.s-sparkle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.8);
  animation: sparkleFade 2.5s ease-in-out infinite;
}
.sp1 { width: 5px; height: 5px; top: 15%; left: 40%; animation-delay: 0s; }
.sp2 { width: 4px; height: 4px; bottom: 15%; right: 30%; animation-delay: 0.8s; }
.sp3 { width: 3px; height: 3px; top: 55%; right: 15%; animation-delay: 1.6s; }
.sobre-badge-label {
  position: absolute;
  bottom: 30px; right: 30px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  font-weight: 600;
  z-index: 2;
}
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2px;
}
.stat {
  padding: 20px;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-top: none;
}
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 4px;
}
.stat-label { font-size: 11px; color: var(--gray); letter-spacing: 0.05em; }
.sobre-texto {}
.sobre-texto h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  margin-top: 12px;
}
.sobre-texto h2 em { font-style: italic; color: var(--gold-dark); }
.sobre-texto p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.sobre-texto .btn-primary { margin-top: 16px; }

/* ===== DEPOIMENTOS ===== */
.depoimentos { padding: 100px 0; background: rgba(230,224,214,0.88); }
.google-rating-geral {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.google-stars-geral { color: #fbbc04; font-size: 20px; letter-spacing: 2px; }
.google-rating-geral span { font-size: 13px; color: var(--gray); font-weight: 500; }
/* --- carousel wrapper --- */
.dep-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.depoimentos-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  flex: 1;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.depoimentos-carousel::-webkit-scrollbar { display: none; }
.dep-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  font-size: 24px;
  border: 1px solid rgba(201,168,76,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
  line-height: 1;
  padding-bottom: 2px;
}
.dep-btn:hover { background: var(--gold); color: #654321; }
.dep-footer {
  text-align: center;
  margin-top: 36px;
}
.dep-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(160,125,48,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.dep-cta:hover { color: var(--gold); border-color: var(--gold); }
.depoimento-card {
  min-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--white);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.depoimento-card:hover { border-color: rgba(201,168,76,0.35); box-shadow: var(--shadow); }
.depoimento-card.featured {
  background: var(--white);
  color: inherit;
  border-color: rgba(0,0,0,0.08);
}
.depoimento-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.depoimento-header > div { flex: 1; }
.depoimento-header strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.depoimento-card.featured .depoimento-header strong { color: inherit; }
.autor-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex: none;
}
.depoimento-stars { color: #fbbc04; font-size: 14px; letter-spacing: 1px; }
.google-badge { margin-left: auto; flex-shrink: 0; opacity: 0.8; }
.depoimento-card p {
  font-size: 14px;
  line-height: 1.75;
  font-style: italic;
  color: var(--gray);
  margin: 0;
}
.depoimento-card.featured p { color: var(--gray); }

/* ===== CONTATO ===== */
.contato { padding: 100px 0; background: rgba(230,224,214,0.88); }
.contato-simples { display: flex !important; justify-content: center; align-items: center; }
.contato-simples .contato-info-center { text-align: center; max-width: 560px; width: 100%; margin: 0 auto; }
.contato-simples .contato-canais { display: flex; flex-direction: column; align-items: center; }
.contato-simples .canal { justify-content: center; max-width: 380px; margin: 0 auto; width: 100%; }
.contato-simples .contato-endereco { margin: 0 auto 24px; max-width: 380px; }
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contato-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 12px;
}
.contato-info > p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contato-endereco {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.contato-endereco svg { flex-shrink: 0; margin-top: 2px; }
.contato-endereco div { display: flex; flex-direction: column; gap: 2px; }
.contato-endereco strong { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.contato-endereco span { font-size: 13px; color: #654321; line-height: 1.5; }
.ver-mapa { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 0.05em; margin-top: 4px; }
.ver-mapa:hover { text-decoration: underline; }
.footer-endereco {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-endereco svg { flex-shrink: 0; margin-top: 2px; }
.footer-endereco span { font-size: 12px; color: #7a5c2e; line-height: 1.6; }
.contato-canais { display: flex; flex-direction: column; gap: 12px; }
.canal {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
  letter-spacing: 0.05em;
}
.canal:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 4px 20px rgba(201,168,76,0.15); }
.contato-form {}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
  color: #654321;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  background: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #654321;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== FOOTER ===== */
#footer, .footer { background: #f5f0eb; color: #654321; }
.footer-top { padding: 80px 0 60px; border-bottom: 1px solid rgba(101,67,33,0.15); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.footer-logo .logo-shimmer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: #654321;
}
.footer-logo .logo-joias {
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}
.footer-logo-img {
  height: auto;
  max-height: 56px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  filter: none;
}
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 24px; color: #7a5c2e; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(101,67,33,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a5c2e;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links h5 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3a2510;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: #7a5c2e;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-dark); }
.footer-bottom { padding: 20px 0; background: #ede7de; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: #9a7a55; }
.footer-bottom-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-bottom-links a {
  font-size: 12px;
  color: #9a7a55;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold-dark); }
#secret-trigger {
  font-size: 14px;
  color: rgba(255,255,255,0.2);
  cursor: default;
  user-select: none;
  transition: color 0.2s;
  padding: 4px;
}
#secret-trigger:hover { color: rgba(255,255,255,0.35); }
#secret-trigger.triggered { color: var(--gold); }

/* ===== MODAL SENHA ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}
.modal-box {
  background: var(--white);
  padding: 48px 40px;
  max-width: 400px;
  width: calc(100% - 40px);
  position: relative;
  text-align: center;
  animation: slideUp 0.3s ease;
}
.modal-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--gray);
  line-height: 1;
  padding: 4px;
}
.modal-close:hover { color: #654321; }
.modal-icon { margin-bottom: 16px; display: flex; justify-content: center; }
.modal-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
}
.modal-box p { font-size: 13px; color: var(--gray); margin-bottom: 24px; }
#form-senha { display: flex; flex-direction: column; gap: 12px; }
#input-senha {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  letter-spacing: 0.3em;
  text-align: center;
  outline: none;
  transition: border-color var(--transition);
}
#input-senha:focus { border-color: var(--gold); }
.senha-erro { font-size: 12px; color: #c0392b; min-height: 16px; }

/* ===== TOAST ===== */
#toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
  font-size: 13px;
  border-left: 3px solid var(--gold);
  min-width: 240px;
  animation: slideInRight 0.3s ease;
  box-shadow: var(--shadow);
}
.toast.success { border-left-color: #27ae60; }
.toast.error { border-left-color: #c0392b; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}
@keyframes gemFloat {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(-12px) rotate(45deg); }
}
@keyframes gemPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(201,168,76,0.6), 0 0 80px rgba(201,168,76,0.3); transform: scale(1); }
  50% { box-shadow: 0 0 60px rgba(201,168,76,0.8), 0 0 120px rgba(201,168,76,0.4); transform: scale(1.05); }
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes sparkleFade {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(0.5); }
}
@keyframes pulseRing {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .categorias-grid, .produtos-grid { grid-template-columns: repeat(2, 1fr); }
  .colecoes-grid { grid-template-columns: 1fr; }
  .colecao-visual { height: 360px; }
  .banner-visual { width: 300px; }
  .banner-content { padding: 60px 40px 60px 40px; }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sobre-inner { grid-template-columns: 1fr; gap: 40px; }
  .contato-inner { grid-template-columns: 1fr; gap: 40px; }
}
/* ===== HAMBÚRGUER + MENU MOBILE ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: #fff;
  border-top: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.25s ease;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 16px 0 24px;
}
.mobile-menu-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  padding: 8px 24px 4px;
}
.mobile-menu-inner a {
  display: block;
  padding: 12px 24px;
  font-size: 14px;
  color: #654321;
  font-weight: 400;
  letter-spacing: 0.03em;
  border-bottom: none;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-inner a:hover { background: var(--cream); color: var(--gold-dark); }
.mobile-destaque { color: var(--gold-dark) !important; font-weight: 600 !important; }
.mobile-divider { height: 1px; background: rgba(0,0,0,0.07); margin: 8px 24px; }
.nav-hide-mobile { display: block; }

@media (max-width: 768px) {
  .header-inner { padding: 0 20px; display: grid; grid-template-columns: 1fr auto 1fr; }
  .nav-left { display: none; }
  .logo { position: static; transform: none; grid-column: 2; }
  .nav-right { grid-column: 3; justify-content: flex-end; gap: 16px; }
  .nav-hide-mobile { display: none !important; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .container { padding: 0 20px; }
  .hero-content { padding: 0 20px; }
  .categorias-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .produtos-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .dep-carousel-wrapper { gap: 0; }
  .dep-btn { display: none; }
  .depoimentos-carousel { gap: 12px; padding: 0 4px; }
  .depoimento-card {
    min-width: min(260px, calc(100vw - 48px));
    padding: 20px;
    gap: 12px;
  }
  .depoimento-header strong { font-size: 13px; }
  .depoimento-card p { font-size: 13px; line-height: 1.6; }
  .banner-luxo { flex-direction: column; }
  .banner-content { padding: 60px 20px; max-width: 100%; }
  .banner-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .casamento-topo { padding: 0 20px; }
  .casamento-cards { grid-template-columns: repeat(2, 1fr); padding: 0 20px; gap: 14px; }
  .casamento-card-img { height: 140px; }
  .colecao-casamento { padding: 60px 0 52px; }
}
@media (max-width: 480px) {
  .categorias-grid { grid-template-columns: 1fr 1fr; }
  .produtos-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .container { padding: 0 14px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .personalizacao-inner { grid-template-columns: 1fr; gap: 40px; }
  .personalizacao-img::before { display: none; }
  .produto-info h4 { font-size: 13px; }
  .produto-material { font-size: 10px; }
  .preco-atual { font-size: 14px; }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.93);
  cursor: zoom-out;
}
.lb-img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  user-select: none;
}
.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  z-index: 2;
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.lb-close:hover { color: #c9a84c; }
.lb-nav {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-size: 30px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  top: 50%; transform: translateY(-50%);
}
.lb-nav:hover { background: rgba(201,168,76,0.25); color: #c9a84c; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-counter {
  position: absolute;
  bottom: 20px;
  left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 0.1em;
  z-index: 2;
}
@media (max-width: 768px) {
  .lb-nav { width: 40px; height: 40px; font-size: 22px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

/* ===== SEÇÃO PROMOÇÃO ===== */
.secao-promo {
  background: rgba(230,224,214,0.88);
  overflow: hidden;
}
.promo-slider { position: relative; }
.promo-slide {
  display: none;
  padding: 80px 0;
  animation: promoFade 0.5s ease;
}
.promo-slide.active { display: block; }
@keyframes promoFade {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.promo-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(201,168,76,0.35);
  color: #654321; font-size: 30px;
  width: 46px; height: 46px;
  cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; line-height: 1; padding: 0;
}
.promo-nav:hover { background: #fff; border-color: var(--gold); }
.promo-prev { left: 20px; }
.promo-next { right: 20px; }
.promo-dots {
  position: absolute; bottom: 18px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.promo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: rgba(101,67,33,0.22);
  cursor: pointer; transition: background 0.3s; padding: 0;
}
.promo-dot.active { background: var(--gold-dark); }
.promo-chamada {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.8vw, 22px);
  color: #7a5c2e;
  font-style: italic;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.promo-visual { position: relative; }
.promo-img-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.promo-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(201,168,76,0.2);
}
.promo-badge-float {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--gold-dark);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
}
.promo-badge-hot {
  background: #7a2020;
  letter-spacing: 0.12em;
  font-size: 9px;
  padding: 7px 16px;
}
.promo-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: #654321;
  line-height: 1.15;
  margin: 10px 0 16px;
}
.promo-titulo em { font-style: italic; color: var(--gold-dark); }
.promo-material {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.promo-preco-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.promo-de {
  font-size: 14px;
  color: var(--gray);
  text-decoration: line-through;
  letter-spacing: 0.02em;
}
.promo-por {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}
.promo-por::after {
  content: ' à vista';
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.promo-avista {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  align-self: flex-end;
  padding-bottom: 4px;
}
.promo-pix {
  font-size: 12px;
  color: #7a5c2e;
  font-weight: 600;
  margin-bottom: 24px;
}
.promo-btns {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.promo-link {
  font-size: 12px;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  font-weight: 500;
  border-bottom: 1px solid rgba(160,125,48,0.4);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.promo-link:hover { color: var(--gold); }
/* Novidades / Mais Pedidos — usa .produtos base + override de fundo alternado */
.secao-novidades { background: var(--white); }
.secao-mais-pedidos { background: rgba(230,224,214,0.88); }
.mais-pedidos-grid { grid-template-columns: repeat(4, 1fr); }
/* Mobile */
@media (max-width: 768px) {
  .promo-inner { grid-template-columns: 1fr; gap: 32px; }
  .promo-img-wrap { max-width: 100%; }
  .promo-por { font-size: 22px; }
  .promo-nav { width: 36px; height: 36px; font-size: 22px; }
  .promo-prev { left: 8px; }
  .promo-next { right: 8px; }
  .mais-pedidos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .mais-pedidos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ===== DIA DOS PAIS ===== */
.pais-section {
  background-color: #120903;
  background-image: url('../images/bg-pattern.jpg');
  background-size: 300px;
  background-repeat: repeat;
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}
.pais-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,5,1,0.94) 0%, rgba(20,10,3,0.90) 100%);
  pointer-events: none;
}
.pais-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
}
.pais-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.pais-chamada {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.4vw, 50px);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 14px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.pais-chamada em { font-style: italic; color: #fff; }
.pais-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.pais-gravacao {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 16px;
}
.pais-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  margin-bottom: 28px;
}
.pais-btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.45);
  padding: 13px 30px;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
}
.pais-btn:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

/* Slider */
.pais-slider-wrap { position: relative; }
.pais-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px 2px 12px;
}
.pais-slider::-webkit-scrollbar { display: none; }
.pais-card {
  flex: 0 0 calc(50% - 8px);
  scroll-snap-align: start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  overflow: hidden;
  transition: border-color 0.3s;
  cursor: pointer;
}
.pais-card:hover { border-color: rgba(201,168,76,0.5); }
.pais-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.pais-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.pais-card:hover .pais-card-img img { transform: scale(1.05); }
.pais-card-info { padding: 16px 18px 20px; }
.pais-card-code {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.pais-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.2;
}
.pais-card-mat {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin-bottom: 8px;
}
.pais-card-preco {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.pais-card-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.pais-card-btn:hover { background: rgba(201,168,76,0.12); }

/* Nav arrows */
.pais-nav {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: rgba(12,6,1,0.75);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s;
}
.pais-nav:hover { background: rgba(201,168,76,0.15); }
.pais-prev { left: 0; }
.pais-next { right: 0; }

@media (max-width: 900px) {
  .pais-section { padding: 48px 24px; overflow: hidden; }
  .pais-inner {
    display: block;
    padding: 0;
    max-width: 100%;
  }
  .pais-header {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 32px;
  }
  .pais-chamada { font-size: 26px; }
  .pais-slider-wrap { width: 100%; overflow: hidden; }
  .pais-card { flex: 0 0 56%; }
  .pais-card-img { aspect-ratio: 1/1; }
}
@media (max-width: 480px) {
  .pais-section { padding: 40px 20px; }
  .pais-chamada { font-size: 24px; }
  .pais-card { flex: 0 0 72%; }
  .pais-nav { display: none; }
}

/* ===== DEPOIMENTOS GRID HOME (3 colunas desktop, 1 coluna mobile) ===== */
.dep-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.dep-grid-home .depoimento-card {
  min-width: 0;
  flex-shrink: unset;
}
.dep-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}
@media (max-width: 768px) {
  .dep-grid-home { grid-template-columns: 1fr; gap: 16px; }
  .dep-footer { flex-direction: column; gap: 12px; }
}

/* ===== CONTATO MOBILE ===== */
@media (max-width: 640px) {
  .contato { padding: 64px 0; }
  .contato-simples .contato-info-center { padding: 0 4px; }
  .contato-simples .canal {
    max-width: 100%;
    padding: 14px 16px;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
  }
  .contato-simples .contato-canais { width: 100%; }
  .contato-endereco { max-width: 100%; padding: 14px 16px; }
  .contato-info h2 { font-size: 32px; }
}

/* ===== FOOTER LOGO MOBILE ===== */
@media (max-width: 768px) {
  .footer-logo-img { max-height: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 9000; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; width: 380px; max-width: 100vw;
  height: 100%; background: #fff; z-index: 9001;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: -4px 0 40px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08); gap: 10px;
}
.cart-header h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 400; color: #654321; flex: 1;
}
.cart-count-label { font-size: 12px; color: #999; font-family: 'Montserrat', sans-serif; }
.cart-close {
  background: none; border: none; font-size: 26px; cursor: pointer;
  color: #aaa; line-height: 1; padding: 0; transition: color 0.2s;
}
.cart-close:hover { color: #654321; }
.cart-items {
  flex: 1; overflow-y: auto; padding: 16px 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.cart-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cart-item-img {
  width: 72px; height: 72px; object-fit: cover;
  flex-shrink: 0; background: #f5f0eb;
}
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: 'Montserrat', sans-serif; font-size: 13px;
  font-weight: 600; color: #654321; margin-bottom: 3px;
}
.cart-item-code { font-family: 'Montserrat', sans-serif; font-size: 11px; color: #bbb; margin-bottom: 6px; }
.cart-item-preco { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600; color: #c9a84c; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.cart-qty-btn {
  width: 26px; height: 26px; border: 1px solid rgba(0,0,0,0.15);
  background: none; cursor: pointer; font-size: 16px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  color: #654321; transition: border-color 0.2s;
}
.cart-qty-btn:hover { border-color: #c9a84c; }
.cart-qty-num {
  font-family: 'Montserrat', sans-serif; font-size: 14px;
  font-weight: 600; color: #654321; min-width: 20px; text-align: center;
}
.cart-item-remove {
  background: none; border: none; cursor: pointer; color: #ddd;
  font-size: 20px; line-height: 1; margin-left: auto;
  transition: color 0.2s; padding: 0;
}
.cart-item-remove:hover { color: #e74c3c; }
.cart-empty {
  display: none; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px; padding: 60px 24px;
  color: #ccc; text-align: center; font-family: 'Montserrat', sans-serif; font-size: 14px;
}
.cart-footer {
  padding: 20px 24px; border-top: 1px solid rgba(0,0,0,0.08);
  background: #faf8f5; display: none;
}
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px;
}
.cart-subtotal span:first-child { font-family: 'Montserrat', sans-serif; font-size: 13px; color: #777; }
.cart-subtotal-value { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: #654321; }
.cart-obs { font-family: 'Montserrat', sans-serif; font-size: 10px; color: #bbb; margin-bottom: 16px; line-height: 1.5; }
.cart-wa-btn { width: 100%; justify-content: center !important; display: flex !important; align-items: center; gap: 10px; text-align: center; }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 700; font-family: 'Montserrat', sans-serif;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-icon { position: relative; }

/* ===== FORMATURAS & CONQUISTAS ===== */
.secao-formaturas { background: var(--cream-alt, #f5f0eb); padding: 100px 0; }

/* ===== BANNER ESCOLHER JOIA ===== */
.banner-escolher {
  background: var(--dark);
  padding: 64px 40px;
  text-align: center;
}
.banner-escolher-inner { max-width: 620px; margin: 0 auto; }
.banner-escolher span {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 18px;
}
.banner-escolher h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300; color: #fff; line-height: 1.2; margin-bottom: 16px;
}
.banner-escolher p {
  font-family: 'Montserrat', sans-serif; font-size: 0.88rem;
  color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 32px;
}
.btn-white-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 32px; border: 1px solid rgba(255,255,255,0.5);
  text-decoration: none; transition: border-color 0.3s, background 0.3s;
}
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* nav guia button */
.nav-guia-btn {
  font-size: 10px !important;
  letter-spacing: 0.12em;
  padding: 6px 12px !important;
  border: 1px solid rgba(201,168,76,0.55) !important;
  color: var(--gold) !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-guia-btn:hover { background: var(--gold) !important; color: #fff !important; }

/* ===== SEARCH OVERLAY ===== */
.search-trigger { cursor: pointer; }
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 2, 0.72);
  z-index: 10001;
  align-items: flex-start;
  justify-content: center;
  padding-top: 88px;
  backdrop-filter: blur(4px);
}
.search-overlay.active { display: flex; }
.search-box {
  background: #fff;
  border-radius: 18px;
  width: 92%;
  max-width: 640px;
  padding: 22px 22px 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
}
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 11px 14px;
}
.search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: transparent;
}
.search-input-wrap input::placeholder { color: #bbb; }
#search-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-size: 17px;
  padding: 0 2px;
  line-height: 1;
  transition: color 0.15s;
}
#search-close:hover { color: var(--dark); }
.search-results {
  margin-top: 14px;
  max-height: 400px;
  overflow-y: auto;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
  cursor: pointer;
}
.search-result-item:hover { background: #f8f3ec; }
.search-result-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0ebe5;
}
.search-result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-result-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.search-result-code {
  font-size: 10px;
  color: #aaa;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.search-result-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-preco {
  font-size: 12px;
  color: #8a6520;
  font-weight: 500;
}
.search-arrow { color: #ccc; flex-shrink: 0; }
.search-result-item:hover .search-arrow { color: var(--gold); }
.search-empty {
  text-align: center;
  color: #aaa;
  padding: 24px 0 12px;
  font-size: 14px;
}
@media (max-width: 480px) {
  .search-overlay { padding-top: 70px; }
  .search-box { padding: 16px 14px 12px; }
  .search-result-img { width: 50px; height: 50px; }
}

/* ===== MODAL PRODUTO ===== */
.pm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 9100;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(3px);
}
.pm-overlay.pm-open { display: flex; }

.pm-box {
  background: #fff;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 6px;
  position: relative;
  display: flex;
  flex-direction: row;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}

.pm-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #888;
  cursor: pointer;
  z-index: 10;
  transition: color .2s;
}
.pm-close:hover { color: #333; }

/* Gallery */
.pm-gallery {
  width: 48%;
  flex-shrink: 0;
  background: #f7f4f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 16px;
  gap: 12px;
}
.pm-img-main {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  background: #f0ece6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pm-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity .2s;
}
.pm-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.pm-thumb {
  width: 60px;
  height: 60px;
  border: 2px solid transparent;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color .2s;
}
.pm-thumb.active { border-color: var(--gold-dark); }
.pm-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Info */
.pm-info {
  flex: 1;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pm-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pm-code {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--gray);
  font-weight: 500;
}
.pm-colecao-tag {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--gold-light, #f5ede0);
  color: var(--gold-dark);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.pm-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  color: #3a2a1a;
  line-height: 1.25;
}
.pm-material {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}
.pm-preco-wrap { border-top: 1px solid #ede8e0; padding-top: 14px; }
.pm-preco {
  font-size: 22px;
  font-weight: 600;
  color: #654321;
  letter-spacing: .02em;
}
.pm-preco::after {
  content: ' à vista';
  font-size: 11px;
  font-weight: 400;
  color: var(--gray);
  vertical-align: middle;
}
.pm-preco.sem-avista::after { display: none; }
.pm-parcel {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
}
.pm-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.pm-btn-sacola {
  width: 100%;
  padding: 14px;
  background: #654321;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .22s;
}
.pm-btn-sacola:hover { background: #4e3318; }
.pm-btn-wpp {
  width: 100%;
  padding: 13px;
  background: #25d366;
  color: #fff;
  border-radius: 3px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .22s;
}
.pm-btn-wpp:hover { background: #1ebe5d; }
.pm-garantia {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: .06em;
  text-align: center;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #f0ece6;
}

/* Mobile modal */
@media (max-width: 640px) {
  .pm-box { flex-direction: column; max-height: 95vh; border-radius: 10px 10px 0 0; }
  .pm-overlay { align-items: flex-end; padding: 0; }
  .pm-gallery { width: 100%; padding: 20px 16px 10px; }
  .pm-img-main { aspect-ratio: 4/3; }
  .pm-info { padding: 20px 20px 24px; gap: 10px; }
  .pm-name { font-size: 20px; }
  .pm-preco { font-size: 20px; }
}
