<style>
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --azul-acinzentado: #5a6c7d;
  --azul-acinzentado-claro: #8ba4b9;
  --dourado: #d4a574;
  --dourado-escuro: #b8945f;
  --bege: #f5f0e8;
  --bege-escuro: #e8e2d5;
  --branco-creme: #faf9f6;
  --preto-suave: #2a2a2a;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--preto-suave);
  overflow-x: hidden;
  background: linear-gradient(135deg, var(--bege) 0%, var(--branco-creme) 100%);
}

/* NAVBAR COM CHECKOUT - TAMANHO REDUZIDO */
.navbar {
  background: rgba(250, 249, 246, 0.95) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(90, 108, 125, 0.12);
  padding: 0.7rem 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(139, 164, 185, 0.1);
  position: relative;
}

.navbar.scrolled {
  padding: 0.4rem 0;
  background: rgba(250, 249, 246, 0.98);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; /* REDUZIDO */
  font-weight: 700;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav-link {
  font-weight: 500;
  color: var(--azul-acinzentado) !important;
  margin: 0 0.8rem;
  position: relative;
  transition: all 0.3s ease;
  font-size: 0.9rem; /* REDUZIDO */
}

.nav-link:hover {
  color: var(--dourado) !important;
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  transition: all 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

/* ÍCONE CARRINHO */
.cart-icon {
  position: relative;
  font-size: 1.1rem; /* REDUZIDO */
  color: var(--azul-acinzentado);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cart-icon:hover {
  color: var(--dourado);
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--dourado);
  color: var(--preto-suave);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

/* BOTÃO CHECKOUT */
.btn-checkout {
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  color: var(--preto-suave) !important;
  border: none;
  padding: 0.5rem 1.5rem; /* REDUZIDO */
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem; /* REDUZIDO */
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
  text-decoration: none;
}

.btn-checkout:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 165, 116, 0.6);
  color: var(--preto-suave) !important;
}

/* HERO - TAMANHO REDUZIDO E CENTRALIZADO */
.hero {
  min-height: 80vh; /* REDUZIDO */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--azul-acinzentado) 0%, var(--azul-acinzentado-claro) 100%);
  position: relative;
  animation: fadeIn 1.5s ease-out;
  padding: 0 1rem; /* MELHOR CENTRALIZAÇÃO */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(212, 165, 116, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 240, 232, 0.3) 0%, transparent 50%);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
  max-width: 600px; /* REDUZIDO */
  padding: 0 1.5rem; /* MELHOR CENTRALIZAÇÃO */
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem); /* REDUZIDO */
  font-weight: 700;
  background: linear-gradient(135deg, var(--dourado), var(--bege));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem; /* REDUZIDO */
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: slideUp 1s ease-out 0.3s both;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem); /* REDUZIDO */
  color: rgba(255,255,255,0.98);
  margin: 0 auto 2rem; /* REDUZIDO */
  font-weight: 300;
  animation: slideUp 1s ease-out 0.6s both;
}

.btn-lunara {
  background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-escuro) 100%);
  color: var(--preto-suave);
  padding: 0.9rem 2.2rem; /* REDUZIDO */
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem; /* REDUZIDO */
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
  position: relative;
  overflow: hidden;
  animation: slideUp 1s ease-out 0.9s both;
}

.btn-lunara::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.btn-lunara:hover::before {
  left: 100%;
}

.btn-lunara:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 40px rgba(212, 165, 116, 0.6);
  border-color: rgba(212, 165, 116, 0.6);
}

/* BOTÃO ADICIONAR AO CARRINHO */
.btn-add-cart {
  background: rgba(255,255,255,0.95);
  color: var(--dourado-escuro);
  border: 2px solid rgba(212, 165, 116, 0.5);
  padding: 0.6rem 1.5rem; /* REDUZIDO */
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem; /* REDUZIDO */
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
}

.jewelry-item:hover .btn-add-cart {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-8px);
  animation: slideUp 0.4s ease-out;
}

/* GALERIA - MAIS COMPACTA */
.galeria {
  padding: 80px 0; /* REDUZIDO */
  background: var(--branco-creme);
  position: relative;
}

.galeria::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
}

.galeria h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); /* REDUZIDO */
  font-weight: 600;
  background: linear-gradient(135deg, var(--azul-acinzentado), var(--dourado));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 3rem; /* REDUZIDO */
  position: relative;
}

.galeria h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; /* REDUZIDO */
  height: 4px;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(212, 165, 116, 0.4);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* REDUZIDO */
  gap: 2rem;
  max-width: 1200px; /* REDUZIDO */
  margin: 0 auto;
  padding: 0 1.5rem; /* MELHOR CENTRALIZAÇÃO */
}

.jewelry-item {
  position: relative;
  border-radius: 20px; /* REDUZIDO */
  overflow: hidden;
  height: 380px; /* REDUZIDO */
  background: linear-gradient(135deg, var(--branco-creme) 0%, var(--bege) 100%);
  box-shadow: 0 15px 50px rgba(90, 108, 125, 0.12);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(139, 164, 185, 0.08);
  backdrop-filter: blur(10px);
}

.jewelry-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(212, 165, 116, 0.25);
  border-color: rgba(212, 165, 116, 0.3);
}

.jewelry-img {
  width: 100%;
  height: 65%; /* AJUSTADO */
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.jewelry-item:hover .jewelry-img {
  transform: scale(1.1) rotate(0.5deg);
  filter: brightness(1.15) contrast(1.15) saturate(1.1);
}

.jewelry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.9) 100%);
  color: white;
  padding: 1.2rem 1.5rem 2rem; /* REDUZIDO */
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.jewelry-item:hover .jewelry-overlay {
  transform: translateY(0);
}

.jewelry-overlay h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; /* REDUZIDO */
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.jewelry-overlay p {
  opacity: 0.95;
  font-size: 0.85rem; /* REDUZIDO */
}

/* MODAL PRODUTO - DETALHADO (Reference Style) */
.modal.fade .modal-dialog {
  transition: transform 0.4s ease-out;
  transform: translateY(20px);
}

.modal.show .modal-dialog {
  transform: translateY(0);
}

#productModal .modal-dialog {
  max-width: 1140px; /* Largura grande estilo e-commerce */
  margin: 1.5rem auto;
}

#productModal .modal-content {
  border-radius: 4px;
  background: #fff;
  border: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  overflow: hidden;
}

#productModal .modal-body {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

#productModal .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 100;
  opacity: 0.5;
}

/* LAYOUT GRID */
.product-modal-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.product-gallery-section {
  width: 55%;
  padding: 2rem;
  background: #fff;
  display: flex;
  gap: 1rem;
}

.product-info-section {
  width: 45%;
  padding: 2.5rem;
  background: #fff;
}

/* GALERIA */
.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80px;
}

.thumb-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid transparent;
  opacity: 0.7;
  transition: all 0.2s;
}

.thumb-img.active, .thumb-img:hover {
  border-color: var(--dourado);
  opacity: 1;
}

.gallery-main {
  flex: 1;
  position: relative;
  height: 500px;
}

.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ou contain, dependendo da imagem */
}

.img-counter {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.8);
  padding: 2px 8px;
  font-size: 0.8rem;
  border-radius: 4px;
}

/* INFO SECTION */
.breadcrumbs {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.product-title-large {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* PREÇOS */
.price-container {
  margin-bottom: 1.5rem;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
  display: block;
}

.current-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.current-price {
  font-size: 2rem;
  font-weight: 400;
  color: #333;
}

.discount-badge {
  color: #c95a4b; /* Tom avermelhado da imagem */
  font-size: 1rem;
  font-weight: 400;
}

.pix-price {
  color: #c95a4b;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 5px;
}

.installments, .pix-note {
  font-size: 0.85rem;
  color: #666;
  display: block;
  margin-top: 2px;
}

.pix-note span {
  color: #c95a4b;
}

.details-link {
  display: inline-block;
  margin-top: 10px;
  color: #666;
  text-decoration: underline;
  font-size: 0.9rem;
  cursor: pointer;
}

/* OPÇÕES */
.options-group {
  margin-top: 1.5rem;
}

.option-label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #555;
}

.form-select-custom {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #555;
  background-color: #fff;
  margin-bottom: 1.5rem;
}

/* AÇÕES DE COMPRA */
.purchase-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  height: 50px;
}

.qty-btn {
  width: 40px;
  height: 100%;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #888;
  cursor: pointer;
}

.qty-input {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 1rem;
  color: #333;
}

.btn-buy-large {
  flex: 1;
  background: #d66d5a; /* Cor terracota do botão */
  color: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s;
}

.btn-buy-large:hover {
  background: #c55b48;
  color: white;
}

/* VALUE PROPS */
.value-props {
  margin-top: 1.5rem;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}

.prop-item {
  display: flex;
  gap: 15px;
  margin-bottom: 1rem;
}

.prop-icon {
  font-size: 1.5rem;
  color: #888;
  width: 30px;
  text-align: center;
}

.prop-text h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #333;
}

.prop-text p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

/* SHIPPING CALC */
.shipping-calc {
  margin-top: 1.5rem;
}

.shipping-calc label {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
  display: block;
}

.calc-input-group {
  display: flex;
}

.cep-input {
  border: 1px solid #ddd;
  padding: 0.5rem 1rem;
  width: 150px;
  border-right: none;
}

.btn-calc {
  border: 1px solid #ddd;
  background: #fff;
  padding: 0.5rem 1.5rem;
  color: #555;
  cursor: pointer;
}

.cep-help {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-top: 5px;
  text-decoration: underline;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .product-gallery-section, .product-info-section {
    width: 100%;
  }
  
  .product-gallery-section {
    padding-bottom: 0;
  }
  
  .gallery-main {
    height: 400px;
  }
}

/* CARRINHO DROPDOWN - MENOR */
.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px; /* REDUZIDO */
  background: var(--branco-creme);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(90, 108, 125, 0.25);
  border: 2px solid rgba(212, 165, 116, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1050;
  max-height: 400px; /* REDUZIDO */
  overflow-y: auto;
}

.cart-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cart-item {
  display: flex;
  padding: 0.8rem; /* REDUZIDO */
  border-bottom: 1px solid rgba(139, 164, 185, 0.1);
  gap: 0.8rem;
}

.cart-item-img {
  width: 50px; /* REDUZIDO */
  height: 50px; /* REDUZIDO */
  object-fit: cover;
  border-radius: 10px;
}

.cart-item-info h6 {
  margin: 0 0 0.2rem 0;
  font-weight: 600;
  font-size: 0.9rem; /* REDUZIDO */
}

.cart-item-info p {
  margin: 0;
  font-size: 0.8rem; /* REDUZIDO */
  color: var(--azul-acinzentado);
}

.cart-total {
  padding: 1.2rem; /* REDUZIDO */
  border-top: 2px solid rgba(212, 165, 116, 0.2);
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, transparent 100%);
}

.empty-cart {
  text-align: center;
  padding: 1.5rem; /* REDUZIDO */
  color: var(--azul-acinzentado);
}

.empty-cart i {
  font-size: 2.2rem; /* REDUZIDO */
  margin-bottom: 0.8rem;
  opacity: 0.5;
}

/* CHECKOUT MODAL */
.checkout-modal .modal-dialog {
  max-width: 450px; /* REDUZIDO */
}

.checkout-form {
  background: var(--branco-creme);
  padding: 1.5rem; /* REDUZIDO */
  border-radius: 16px;
}

.form-control {
  border: 2px solid rgba(139, 164, 185, 0.2);
  border-radius: 10px; /* REDUZIDO */
  padding: 0.8rem; /* REDUZIDO */
  font-size: 0.95rem; /* REDUZIDO */
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--dourado);
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.2);
}

.btn-finalizar {
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  border: none;
  color: var(--preto-suave);
  padding: 1rem; /* REDUZIDO */
  border-radius: 12px; /* REDUZIDO */
  font-weight: 700;
  font-size: 1rem; /* REDUZIDO */
  width: 100%;
  transition: all 0.4s ease;
}

.btn-finalizar:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 165, 116, 0.5);
}

/* SEÇÃO CONTATO - MENOR */
#contato h2 {
  font-size: 2rem !important; /* REDUZIDO */
  margin-bottom: 2rem !important;
}

#contato .lead {
  font-size: 1.1rem !important; /* REDUZIDO */
  margin-bottom: 3rem !important;
}

.btn-lunara.btn-lg {
  padding: 1rem 2.5rem !important; /* REDUZIDO */
  font-size: 1rem !important; /* REDUZIDO */
}

/* FOOTER - MENOR */
footer p {
  font-size: 0.9rem !important;
}

/* ===== 2026 TRENDS & ANIMATIONS ===== */

/* TEXTURA GRANULADA (Noise Overlay) - Toque Premium Editorial */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* HERO AURORA ANIMATION */
.hero {
  background: linear-gradient(-45deg, #0f2027, #203a43, #2c5364, #4b6cb7);
  background-size: 400% 400%;
  animation: aurora 15s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes aurora {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* SCROLL REVEAL ANIMATION CLASS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/*  MICRO-INTERAÇÕES: BOTÕES COM BRILHO MAGNÉTICO */
.btn-lunara {
  position: relative;
  overflow: hidden;
  background-size: 200% auto;
  transition: 0.5s;
}

.btn-lunara:hover {
  background-position: right center;
  box-shadow: 0 0 20px rgba(212, 165, 116, 0.6), 0 0 40px rgba(212, 165, 116, 0.3);
}

/* PRODUTOS: EFEITO DE FOCO (Focus Effect) */
.jewelry-item {
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.galeria-grid:hover .jewelry-item:not(:hover) {
  transform: scale(0.95);
  opacity: 0.7;
  filter: grayscale(30%);
}

.jewelry-item:hover {
  z-index: 10;
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* TÍTULOS ELEGANTES */
h1, h2, h3 {
  letter-spacing: -0.03em; /* Kerning moderno */
}

/* ANIMAÇÕES RESTAURADAS (Para Hero Section) */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {

  /* MODAL PRODUTO – RESPONSIVO MOBILE */
  #productModal .modal-dialog {
    max-width: 100vw;
    margin: 0;
  }

  #productModal .modal-content {
    min-height: 100vh;
    border-radius: 22px 22px 0 0;
  }

  #productModal .modal-body {
    flex-direction: column;
    padding: 1rem;
    gap: 1.2rem;
  }

  .product-gallery {
    width: 100%;
    max-height: 260px;
  }

  .product-main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .product-details {
    padding: 0;
  }

  .hero h1 { font-size: 2.2rem; }
  .navbar-brand { font-size: 1.2rem; }
  .galeria-grid { 
    grid-template-columns: 1fr; 
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .jewelry-item {
    height: 360px;
  }
  .cart-dropdown {
    width: 300px;
    right: -10px;
  }
  
  /* Modal responsivo - MELHORADO */
  #productModal .modal-dialog {
    max-width: 90vw;
    margin: 1rem;
  }
  
  #productModal .modal-body {
    flex-direction: column;
    padding: 0 1.2rem 1.5rem;
    gap: 1.5rem;
  }
  
  .product-gallery {
    height: 280px;
  }
}

html {
  scroll-behavior: smooth;
}

.hero {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

/* ===== FOOTER COM A MESMA PALETA DO HERO ===== */

footer.footer {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364) !important;
  color: rgba(255,255,255,0.9);
}

footer.footer a {
  color: #d4a574;
  text-decoration: none;
}

footer.footer a:hover {
  color: #ffffff;
}
/* DROPDOWN COLEÇÕES - ESTILO PREMIUM */
.dropdown-menu {
  background: linear-gradient(145deg, #faf9f6, #f5f0e8);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 14px;
  padding: 0.6rem;
  box-shadow: 0 15px 40px rgba(90, 108, 125, 0.25);
  animation: dropdownFade 0.25s ease;
}

.dropdown-item {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--preto-suave);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  color: #2a2a2a;
  transform: translateX(4px);
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* SETA FLUTUANTE VOLTAR AO TOPO */
#backToTop {
  position: fixed;
  right: 25px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  color: var(--preto-suave);
  border: none;
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 2000;
}

#backToTop:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 18px 45px rgba(212, 165, 116, 0.6);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}
.product-title {
  font-size: 1.5rem;          /* menor */
  font-weight: 600;           /* mais elegante */
  letter-spacing: 0.3px;
}
.price-tag {
  font-size: 1.9rem;          /* menor que antes */
  font-weight: 700;
  letter-spacing: -0.5px;
}
.product-description {
  font-size: 0.9rem;          /* menor */
  line-height: 1.8;           /* leitura premium */
  color: var(--azul-acinzentado);
  font-weight: 400;
}
.product-features h6 {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.feature-item {
  font-size: 0.85rem;
  gap: 0.7rem;
}

.feature-icon {
  width: 28px;
  height: 28px;
  font-size: 0.75rem;
}
@media (max-width: 768px) {

  .btn-cart-modal {
    position: sticky;
    bottom: 0;
    width: 100%;
    border-radius: 22px 22px 0 0;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 0.95rem;
    z-index: 10;
  }

}



</style>