/* ============================================
   CANAA DECORA 2025 — Inspired by Accord
   Conceito: Luz, Madeira & Artesanato
   Dark Luxury + Wood Warmth
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Montserrat:wght@200;300;400;500;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
  --black: #000000;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #1A1A1A;
  --gold: #C9A96E;
  --gold-light: #D4B97E;
  --gold-dark: #A88B4A;
  --gray: #D8D4CC;
  --gray-light: #CCCCCC;
  --gray-dark: #333333;
  --terracota: #A0522D;
  --wood-1: #5C3A21;
  --wood-2: #8B5E3C;
  --wood-3: #6B4226;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

img { max-width: 100%; display: block; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
}

/* ============================================
   NAVBAR — Minimal, Accord style
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-top {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

.nav-top span { color: var(--gold); }

.nav-main {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-scrolled .nav-top { display: none; }
.nav-scrolled .nav-main {
  background: rgba(0,0,0,0.98);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
}

.logo-type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 4px;
}

.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.5rem;
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  width: 28px; height: 1px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* Mobile-only menu items */
.mob-only { display: none !important; }
.mob-logged { display: none !important; }

/* ============================================
   HERO — Full viewport, cinematic
   ============================================ */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.1) 60%,
    rgba(0,0,0,0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px 100px;
}

.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.7s forwards;
}

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

.hero-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 1.1s forwards;
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px; height: 8px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}

.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

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

/* ============================================
   BUTTONS — Accord style
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-dark {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-dark:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

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

.btn-dark {
  background: var(--dark-3);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1EB954;
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '\2192';
  transition: transform 0.3s ease;
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 120px 0;
}

.section-light {
  background: var(--dark-3);
  color: var(--white);
}

.section-light h2, .section-light h3, .section-light h4 {
  color: var(--white);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
}

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

.section-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-light .section-desc {
  color: var(--gray);
}

.section-light .label {
  color: var(--gold);
}

/* ============================================
   DNA / SOBRE — Split layout
   ============================================ */
.dna-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.dna-image {
  position: relative;
  overflow: hidden;
}

.dna-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dna-image:hover img {
  transform: scale(1.03);
}

.dna-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px;
  background: var(--dark);
}

.dna-text h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 32px;
}

.dna-text p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 2;
  margin-bottom: 16px;
}

.dna-text .highlight-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.6;
  margin: 32px 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 48px;
  padding-top: 48px;
}

.stat-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(201,169,110,0.2);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 400;
}

/* ============================================
   CATEGORIAS — 3 cards, Accord style
   ============================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.cat-card {
  position: relative;
  height: 45vh;
  min-height: 320px;
  overflow: hidden;
  cursor: pointer;
}

.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  transition: background 0.4s ease;
}

.cat-card:hover .cat-overlay {
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.3) 100%);
}

.cat-count {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}

.cat-link {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.cat-link::after {
  content: '\2192';
  transition: transform 0.3s ease;
}

.cat-card:hover .cat-link {
  color: var(--gold);
}

.cat-card:hover .cat-link::after {
  transform: translateX(6px);
}

/* ============================================
   CORES / ACABAMENTOS
   ============================================ */
.cores-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.cor-item {
  padding: 60px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.04);
  transition: background 0.4s ease;
}

.cor-item:last-child { border-right: none; }

.cor-item:hover { background: rgba(255,255,255,0.03); }

.cor-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: transform 0.4s ease;
}

.cor-item:hover .cor-circle {
  transform: scale(1.1);
}

.cor-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}

.cor-desc {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 300;
}

/* ============================================
   CATALOGO — Product grid
   ============================================ */
.catalogo-filters {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 60px;
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

.filters-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.filter-btn:last-child { border-right: none; }

.filter-btn:hover { color: var(--white); }

.filter-btn.active {
  background: var(--gold);
  color: var(--black);
}

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.produto-card {
  position: relative;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.produto-card:hover {
  z-index: 2;
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.produto-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #F2F2F2;
}

.produto-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.produto-card:hover .produto-image img {
  transform: scale(1.08);
}

.produto-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.produto-card:hover .produto-hover-overlay {
  opacity: 1;
}

.produto-hover-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}

.produto-hover-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.produto-colors {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 4px;
}

.color-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.produto-info {
  padding: 20px 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  color: #333 !important;
}

.produto-ref {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #A88B4A !important;
  margin-bottom: 6px;
  font-weight: 600;
}

.produto-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1A1A1A !important;
  margin-bottom: 6px;
}

.produto-specs {
  font-size: 0.8rem;
  color: #666666 !important;
  font-weight: 400;
}

.produto-price {
  color: #1A1A1A !important;
}

.produto-price small {
  color: #A88B4A !important;
}

/* Garantir que estoque label fica visivel */
.produto-price span {
  color: #666 !important;
}

.load-more-wrapper {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   DIFERENCIAIS — Icon cards on dark
   ============================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.diff-card {
  padding: 60px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.04);
  transition: background 0.4s ease;
}

.diff-card:last-child { border-right: none; }

.diff-card:hover { background: rgba(255,255,255,0.03); }

.diff-icon {
  width: 48px; height: 48px;
  margin: 0 auto 24px;
  color: var(--gold);
}

.diff-icon svg { width: 100%; height: 100%; }

.diff-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.diff-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================
   GALERIA — Masonry-ish grid
   ============================================ */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 300px;
  gap: 2px;
}

.galeria-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.galeria-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.galeria-item:hover img {
  transform: scale(1.05);
}

.galeria-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.4s ease;
}

.galeria-item:hover::after {
  background: rgba(0,0,0,0.25);
}

/* ============================================
   LOJISTAS — B2B section
   ============================================ */
.lojistas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.lojistas-left {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark-3);
}

.lojistas-left h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}

.lojistas-left p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  margin-bottom: 32px;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
}

.benefit-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.benefit-check svg {
  width: 10px; height: 10px;
  color: var(--black);
}

.lojistas-right {
  background: var(--dark);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lead-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}

.lead-form .form-sub {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 32px;
  font-weight: 300;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

.form-group textarea {
  resize: none;
  min-height: 60px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row-3 { grid-template-columns: 1fr 1.5fr 0.7fr; }

.form-group select {
  -webkit-appearance: none;
  appearance: none;
}

.lead-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

/* ============================================
   CONTATO
   ============================================ */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.contato-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contato-icon svg { width: 20px; height: 20px; }

.contato-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
  font-weight: 500;
}

.contato-text span {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 300;
}

.contato-form-dark {
  padding: 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
}

/* ============================================
   FOOTER — Minimal, Accord style
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-about p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.8;
  margin-top: 20px;
  font-weight: 300;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 12px; }

.footer-col a {
  font-size: 0.8rem;
  color: var(--gray);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-social a svg { width: 14px; height: 14px; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 54px; height: 54px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
}

.whatsapp-float svg { width: 26px; height: 26px; }

/* Scroll top */
.scroll-top {
  position: fixed;
  bottom: 100px; right: 32px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 998;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-top.visible { display: flex; }

.scroll-top:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.modal-overlay.open { display: flex; }

.modal-content {
  background: var(--dark-2);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
  z-index: 1;
}

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

.modal-image {
  width: 100%; height: 320px;
  object-fit: contain;
  background: #F2F2F2;
  padding: 24px;
}

.modal-body {
  padding: 32px;
}

.modal-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}

.modal-ref {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.modal-specs {
  list-style: none;
  margin-bottom: 24px;
}

.modal-specs li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.8rem;
  color: var(--gray);
}

.modal-specs li strong {
  color: var(--white);
  font-weight: 400;
}

.modal-colors {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.modal-color {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
}

.modal-whatsapp {
  width: 100%;
  justify-content: center;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.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: 1200px) {
  .catalogo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .dna-section { grid-template-columns: 1fr; }
  .dna-image { height: 50vh; }
  .dna-text { padding: 60px 40px; }
  .lojistas-grid { grid-template-columns: 1fr; }
  .lojistas-left, .lojistas-right { padding: 60px 40px; }
  .contato-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-card { border-bottom: 1px solid rgba(255,255,255,0.04); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { height: 50vh; min-height: 400px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  /* Esconder botoes Entrar/Cadastre-se no header mobile */
  #nav-guest { display: none !important; }

  /* Menu usuario logado — so icones, sem texto */
  #nav-user {
    gap: 8px !important;
  }
  #nav-user .nav-user-name { display: none !important; }
  #nav-user .nav-logout { display: none !important; }
  #nav-user .nav-icon-btn { width: 36px; height: 36px; }

  /* Top bar menor */
  .nav-top { font-size: 0.5rem; letter-spacing: 1.5px; padding: 6px 0; }

  /* Nav container */
  .nav-container { height: 60px; }

  /* Logo menor */
  .logo-name { font-size: 1.2rem; letter-spacing: 2px; }
  .logo-sub { font-size: 0.4rem; letter-spacing: 3px; }
  .logo-mark { width: 32px; height: 32px; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 1000;
  }

  .nav-links.open { display: flex; }
  .nav-links .nav-link { font-size: 0.9rem; color: var(--white); }
  .nav-links .nav-cta { margin-top: 16px; }
  .mob-only.mob-guest { display: block !important; }
  .mob-only.mob-logged { display: none !important; }

  .container, .nav-container { padding: 0 20px; }
  .hero-content { padding: 0 20px 80px; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }

  /* Hero centralizado */
  .hero-content { text-align: center; }
  .hero h1 { font-size: 2rem; }
  .hero-desc { font-size: 0.85rem; margin-left: auto; margin-right: auto; }
  .hero-label { font-size: 0.5rem; letter-spacing: 4px; }
  .hero-actions { flex-direction: column; gap: 12px; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }

  /* Catalogo */
  .catalogo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cores-strip { grid-template-columns: repeat(2, 1fr); }
  .cor-item { border-bottom: 1px solid rgba(255,255,255,0.04); padding: 40px 20px; }
  .diff-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-col ul { list-style: none; }
  .footer-about { text-align: center; }
  .footer-about .logo { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-social { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr 0.7fr; }

  /* WhatsApp float */
  .whatsapp-float { bottom: 20px; right: 20px; width: 48px; height: 48px; }
  .whatsapp-float svg { width: 22px; height: 22px; }

  /* Card de produto — area de compra mobile */
  .produto-add-bar {
    padding: 12px 16px;
  }
  .add-bar-row {
    margin-bottom: 8px;
  }
  .add-bar-label {
    width: 32px;
    font-size: 0.55rem;
  }
  .cor-select {
    font-size: 0.75rem;
    padding: 8px 10px;
  }
  .qty-inline .qty-btn { width: 28px; height: 28px; }
  .qty-input { width: 34px; height: 28px; font-size: 0.75rem; }
  .btn-add-cart {
    font-size: 0.6rem;
    padding: 10px 12px;
    letter-spacing: 1px;
  }

  /* Preco mobile */
  .produto-price {
    font-size: 0.9rem;
  }
  .produto-price small {
    font-size: 0.55rem;
  }
  .produto-name { font-size: 1rem; }
  .produto-ref { font-size: 0.55rem; }
  .produto-specs { font-size: 0.7rem; }

  /* Lojistas centralizado */
  .lojistas-left, .lojistas-right { padding: 40px 20px; text-align: center; }
  .lojistas-left h2 { text-align: center; }
  .lojistas-left p { text-align: center; }
  .benefits-list li { justify-content: center; text-align: left; }

  /* Stats centralizado */
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 2rem; }

  /* Sobre centralizado */
  .dna-text { text-align: center; }
  .dna-text .highlight-text { text-align: center; border-left: none; border-top: 2px solid var(--gold); padding-left: 0; padding-top: 16px; }
  .dna-text .label { text-align: center; }

  /* Diferenciais centralizado */
  .diff-card { text-align: center; }

  /* Contato centralizado */
  .contato-grid { text-align: center; }
  .contato-item { justify-content: center; }
  .contato-info h3 { text-align: center; }
  .contato-form-dark { text-align: left; }

  /* Categorias */
  .cat-card { height: 35vh; min-height: 250px; }
  .cat-name { font-size: 1.6rem; }
  .cat-overlay { text-align: center; align-items: center; }

  /* Produto info centralizado */
  .produto-info { text-align: center; }
  .produto-add-bar { align-items: center; }
  .add-bar-row { justify-content: center; }

  /* Section headers */
  .section-header { text-align: center; }

  /* Top bar centralizado */
  .nav-top { text-align: center; }
}

@media (max-width: 480px) {
  .catalogo-grid { grid-template-columns: 1fr; }
  .cores-strip { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 16px 0; }
}

/* ============================================
   AUTH MODAL
   ============================================ */
.auth-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.auth-modal.open { display: flex; }

.auth-box {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.auth-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  z-index: 1;
  transition: all 0.3s ease;
}

.auth-close:hover { border-color: var(--gold); color: var(--gold); }

.auth-header {
  padding: 40px 40px 0;
  text-align: center;
}

.auth-header h2 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 24px;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.auth-tab {
  flex: 1;
  padding: 14px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.auth-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.auth-form {
  display: none;
  padding: 32px 40px 40px;
}

.auth-form.active { display: block; }

.auth-message {
  display: none;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.auth-message.error { background: rgba(231,76,60,0.15); color: #e74c3c; }
.auth-message.success { background: rgba(37,211,102,0.15); color: #25D366; }
.auth-message.warning { background: rgba(201,169,110,0.15); color: var(--gold); }

/* ============================================
   NAV USER MENU
   ============================================ */
.nav-user {
  display: none;
  align-items: center;
  gap: 20px;
}

.nav-user-name {
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--gray-light);
}

.nav-user-name strong {
  color: var(--gold);
}

.nav-icon-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--gray-light);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.nav-icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.55rem;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

.nav-logout {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-logout:hover { color: #e74c3c; }

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-sidebar {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.cart-sidebar.open { display: block; }

.cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.cart-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100%;
  background: var(--dark-2);
  border-left: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  animation: slideIn 0.3s forwards;
}

@keyframes slideIn { to { transform: translateX(0); } }

.cart-header {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
}

.cart-header button {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cart-header button:hover { border-color: var(--gold); color: var(--gold); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray);
  text-align: center;
  gap: 12px;
}

.cart-empty svg { opacity: 0.3; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cart-item-img {
  width: 72px; height: 72px;
  object-fit: contain;
  background: #F2F2F2;
  padding: 8px;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.cart-item-details {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.cart-item-price {
  font-family: 'Montserrat', sans-serif;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px; height: 28px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.qty-btn:hover { border-color: var(--gold); color: var(--gold); }

.cart-item-qty span {
  font-size: 0.85rem;
  color: var(--white);
  min-width: 24px;
  text-align: center;
}

.qty-remove {
  margin-left: auto;
  background: transparent;
  border: none;
  color: var(--gray);
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s ease;
}

.qty-remove:hover { color: #e74c3c; }

.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cart-total-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.cart-total-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cart-footer .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   CART NOTIFICATION
   ============================================ */
.cart-notification {
  position: fixed;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
  padding: 14px 24px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3000;
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.cart-notification.show { top: 100px; }

/* ============================================
   PRODUTO PRICE & ADD TO CART
   ============================================ */
/* ── Preco ── */
.produto-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  color: #1A1A1A;
  font-weight: 800;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

.produto-price small {
  font-size: 0.6rem;
  font-weight: 600;
  color: #A88B4A;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

/* ── Barra de compra ── */
.produto-add-bar {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 16px 20px;
  background: #fafafa;
}

.add-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.add-bar-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
  width: 40px;
  flex-shrink: 0;
}

.cor-select {
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fff;
  color: #333;
  cursor: pointer;
  outline: none;
  text-transform: capitalize;
  -webkit-appearance: none;
  appearance: none;
}

.cor-select:focus { border-color: var(--gold); }

/* ── Quantidade ── */
.qty-inline {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.qty-inline .qty-btn {
  width: 32px; height: 32px;
  background: #fff;
  border: none;
  color: #333;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-weight: 300;
}

.qty-inline .qty-btn:hover { background: #f0f0f0; }

.qty-input {
  width: 40px; height: 32px;
  text-align: center;
  border: none;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #222;
  outline: none;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── Botao comprar ── */
.btn-add-cart {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-add-cart:hover {
  background: #333;
  color: #fff;
}

/* ============================================
   ORDERS MODAL
   ============================================ */
.orders-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  backdrop-filter: blur(10px);
}

.orders-modal.open { display: flex; }

.orders-box {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  max-width: 640px;
  width: 100%;
  position: relative;
}

.orders-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.orders-header h2 {
  font-size: 1.4rem;
  color: var(--white);
}

.orders-list {
  padding: 20px 32px 32px;
}

.order-card {
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 16px;
  padding: 20px;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.order-id-label {
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 500;
}

.order-date {
  font-size: 0.7rem;
  color: var(--gray);
  margin-left: 12px;
}

.order-status {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  color: var(--black);
}

.order-items { margin-bottom: 12px; }

.order-item-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.8rem;
  color: var(--gray);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.order-total {
  text-align: right;
  font-size: 0.9rem;
  color: var(--white);
  padding-top: 8px;
}

.order-total strong { color: var(--gold); }

/* ============================================
   ORDER SUCCESS MODAL
   ============================================ */
.order-success {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.order-success.open { display: flex; }

.order-success-box {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  max-width: 400px;
  width: 100%;
  text-align: center;
  padding: 60px 40px;
}

.order-success-box svg { margin-bottom: 20px; }

.order-success-box h2 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}

.order-success-box .order-id {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.order-success-box p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Hover actions in product card */
.produto-hover-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
