:root {
  --bg-deep-black: #050300;
  --gold-metallic: #BFA15F; /* Dourado mais neutro e elegante (champagne) */
  --gold-rgb: 191, 161, 95; /* Versão RGB para usar com rgba() */
  --gold-glow: rgba(191, 161, 95, 0.4);
  --gold-glow-strong: rgba(191, 161, 95, 0.8);
  --gold-gradient: linear-gradient(135deg, #E8D8BA 0%, #BFA15F 35%, #8C7343 70%, #4A3A17 100%);
  --text-light: #F8F8F8;
  --text-muted: #A8A8A8;
  --glass-bg: rgba(20, 15, 5, 0.55);
  --glass-border: rgba(191, 161, 95, 0.25);

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-deep-black);
  color: var(--text-light);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilitários de Efeito Premium */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  /* fallback */
}

.premium-glow {
  box-shadow: 0 0 25px var(--gold-glow);
  transition: all 0.5s ease;
}

.premium-glow:hover {
  box-shadow: 0 0 50px var(--gold-glow-strong);
  transform: translateY(-2px);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  /* Cantos um pouco mais arredondados */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glass-card:hover {
  border-color: rgba(var(--gold-rgb), 0.5);
  background: rgba(20, 20, 20, 0.85);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8), 0 0 15px rgba(var(--gold-rgb), 0.15);
  transform: translateY(-3px);
}

/* Animações base para Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Filtros de Categoria */
.category-filters-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-filter-btn {
  background: transparent;
  color: var(--gold-metallic);
  border: 1px solid var(--gold-metallic);
  padding: 10px 24px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 400;
}

.category-filter-btn.active, .category-filter-btn:hover {
  background: var(--gold-metallic);
  color: #000;
  font-weight: 600;
}

.category-back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-metallic);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 1rem;
}

.category-back-button:hover {
  opacity: 0.8;
}

@media (max-width: 600px) {
  .category-back-button {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
  .category-back-button svg {
    width: 16px;
    height: 16px;
  }
  .category-filters-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
      "fem mas"
      "todos todos";
    gap: 0.5rem;
    padding: 0 1rem;
  }

  .category-filter-btn {
    padding: 8px 5px;
    font-size: 0.7rem;
    text-align: center;
    width: 100%;
  }
  
  .category-filter-btn:nth-child(1) {
    grid-area: todos;
  }
  .category-filter-btn:nth-child(2) {
    grid-area: fem;
  }
  .category-filter-btn:nth-child(3) {
    grid-area: mas;
  }
}

.category-page-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
  letter-spacing: 8px;
  margin: 1.5rem 0 2rem 0;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .category-page-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
    letter-spacing: 2px;
    margin: 1rem 0 1.5rem 0;
    padding: 0 1rem;
  }
}

.category-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -1rem auto 2.5rem auto;
  width: 80%;
  max-width: 300px;
}

.category-divider::before,
.category-divider::after {
  content: '';
  height: 1px;
  flex: 1;
}

.category-divider::before {
  background: linear-gradient(to right, transparent, var(--gold-metallic));
  margin-right: 12px;
}

.category-divider::after {
  background: linear-gradient(to left, transparent, var(--gold-metallic));
  margin-left: 12px;
}

.category-divider-diamond {
  width: 8px;
  height: 8px;
  background: #FCEABB;
  transform: rotate(45deg);
  box-shadow: 0 0 12px 4px rgba(191, 161, 95, 0.6);
}

@media (max-width: 768px) {
  .category-divider {
    margin: -0.5rem auto 1.5rem auto;
  }
}

/* Floating button to return to main site from catalog */
.colecao-fab-back-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
}

.colecao-fab-back {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--gold-metallic);
  background: #000;
  color: var(--gold-metallic);
  text-decoration: none;
}

.colecao-fab-back:hover {
  transform: scale(1.1);
  background: var(--gold-metallic);
  color: #000;
  box-shadow: 0 5px 25px rgba(191, 161, 95, 0.5);
}

@media (max-width: 768px) {
  .colecao-fab-back-container {
    bottom: 1.5rem;
    left: 1.5rem;
  }
  .colecao-fab-back {
    width: 46px;
    height: 46px;
  }
}
/* Os estilos foram centralizados em index.css e nos modulos de componentes para melhor manutenibilidade */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
  border: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header.scrolled {
  padding: 1rem 0;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: none;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 32px;
  padding-right: 32px;
}

.header-logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  max-height: 90px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

.logo-subtitle {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: var(--text-light);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.header-nav {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.95);
  transition: color 0.3s ease;
  position: relative;
  text-decoration: none;
  text-shadow:
    0 0 20px rgba(0, 0, 0, 1),
    0 1px 4px rgba(0, 0, 0, 0.9),
    0 2px 12px rgba(0, 0, 0, 0.8);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold-metallic);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-metallic);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.action-btn {
  color: var(--text-light);
  transition: color 0.3s ease;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  filter:
    drop-shadow(0 0 8px rgba(0, 0, 0, 1)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9));
}

.action-btn:hover {
  color: var(--gold-metallic);
}

.cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold-metallic);
  color: var(--bg-deep-black);
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* User Menu & Greeting */
.user-greeting {
  font-size: 0.8rem;
  color: #aaa;
  margin-right: 1rem;
  letter-spacing: 1px;
}

.user-greeting span {
  color: var(--gold-metallic);
  font-weight: 500;
}

.user-menu-container {
  position: relative;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 1rem;
  width: 200px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.dropdown-header {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: var(--gold-metallic);
  text-align: center;
  margin-bottom: 0.5rem;
}

.dropdown-item {
  background: transparent;
  border: none;
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(var(--gold-rgb), 0.1);
  color: var(--gold-metallic);
}

.dropdown-item.logout {
  color: #ff6b6b;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-item.logout:hover {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
}

.dropdown-item.admin-item {
  color: var(--gold-metallic);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.5rem;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.dropdown-item.admin-item:hover {
  background: rgba(var(--gold-rgb), 0.15);
  color: var(--gold-metallic);
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

.hamburger-btn,
.mobile-menu-header,
.mobile-menu-footer {
  display: none;
}

.mobile-menu-links {
  display: flex;
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .logo-img {
    max-height: 55px;
  }

  .desktop-only {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .header-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 65%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(145deg, rgba(5, 5, 5, 0.75) 0%, rgba(25, 20, 10, 0.65) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 2.5rem 1.5rem;
    box-shadow: 15px 0 40px rgba(0, 0, 0, 0.9);
    border-right: 1px solid rgba(194, 168, 120, 0.3);
    gap: 0;
  }

  .header-nav.open {
    left: 0;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 0;
    border-bottom: none;
  }

  .close-menu-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .close-menu-btn:hover {
    color: var(--gold-metallic);
    transform: rotate(90deg);
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
  }

  .nav-link {
    font-size: 1.1rem;
    font-family: var(--font-sans);
    letter-spacing: 3px;
    padding: 0.5rem 0;
    width: 100%;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    align-self: flex-start;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--gold-metallic);
    transform: translateX(8px);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-metallic);
    transition: width 0.3s ease;
    display: block;
  }

  .nav-link.active::after,
  .nav-link:hover::after {
    width: 20px;
  }

  .mobile-menu-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(194, 168, 120, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .mobile-socials {
    display: flex;
    gap: 1.5rem;
  }

  .social-icon {
    color: var(--text-light);
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .social-icon:hover {
    color: var(--gold-metallic);
    transform: translateY(-3px);
  }

  .header-actions {
    gap: 1.2rem;
  }
}.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 120px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/fundohero.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Brilho dourado direcional fortíssimo */
  background: radial-gradient(ellipse at 70% 30%, rgba(var(--gold-rgb), 0.35) 0%, rgba(var(--gold-rgb), 0.15) 30%, transparent 60%);
  mix-blend-mode: color-dodge;
  pointer-events: none;
  z-index: 2;
}

.hero-background::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(to bottom, transparent, var(--bg-deep-black));
  pointer-events: none;
  z-index: 2;
}

/* Overlay sutil apenas na esquerda para permitir a leitura */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.95) 25%,
      rgba(5, 3, 0, 0.6) 50%,
      transparent 85%);
  z-index: 3;
}

.hero-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: flex-start;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 1100px;
}

.hero-logo-large {
  margin-bottom: 1.5rem;
  margin-left: -50px;
  margin-top: -60px;
}

.hero-logo-large img {
  max-width: 1100px;
  width: 130%;
  height: auto;
  /* Sombra preta super densa para destacar o logo fortemente do fundo */
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 1)) drop-shadow(0 25px 60px rgba(0, 0, 0, 1)) drop-shadow(0 0 25px rgba(0, 0, 0, 0.95));
}

.hero-desc {
  font-family: var(--font-sans);
  font-size: 1.65rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
  text-align: left;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 1), 0 2px 5px rgba(0, 0, 0, 0.8);
}

.hero-text-and-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: fit-content;
  margin-bottom: 2rem;
  margin-left: 20px;
}

.gold-text {
  color: var(--gold-metallic);
  font-weight: 600;
  text-shadow: 0 0 20px rgba(var(--gold-rgb), 0.5);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.primary-btn {
  background: linear-gradient(135deg, rgba(232, 216, 186, 0.85) 0%, rgba(191, 161, 95, 0.85) 35%, rgba(140, 115, 67, 0.85) 70%, rgba(74, 58, 23, 0.85) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--bg-deep-black);
  border: 1px solid rgba(191, 161, 95, 0.5);
  box-shadow: 0 5px 15px rgba(var(--gold-rgb), 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(var(--gold-rgb), 0.6);
}

.secondary-btn {
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--text-light);
  border: 1px solid rgba(var(--gold-rgb), 0.4);
}

.secondary-btn:hover {
  border-color: var(--gold-metallic);
  color: var(--gold-metallic);
  background: rgba(var(--gold-rgb), 0.15);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.hero-mini-benefits {
  display: flex;
  gap: 2.5rem;
  margin-left: 20px;
}

.mini-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 1), 0 1px 4px rgba(0, 0, 0, 0.8);
  flex: 1;
}

.mini-benefit svg {
  color: var(--gold-metallic);
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 8px rgba(var(--gold-rgb), 0.5)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.9));
}

.mini-benefit strong {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Bottom Cards */
.hero-bottom-cards {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  z-index: 3;
}

.category-card-mini {
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--gold-rgb), 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 1rem 1.75rem 1rem 0.75rem;
  gap: 1.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.category-card-mini:hover {
  background: rgba(15, 15, 15, 0.7);
  border-color: rgba(var(--gold-rgb), 0.6);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(var(--gold-rgb), 0.15);
}

.card-mini-img {
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
  filter: drop-shadow(0 0 10px rgba(var(--gold-rgb), 0.2));
}

.card-mini-content h4 {
  color: var(--gold-metallic);
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.35rem 0;
  letter-spacing: 1px;
}

.card-mini-content span {
  color: var(--text-light);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  opacity: 0.8;
}

.card-mini-content span svg {
  color: var(--gold-metallic);
}

.category-card-mini:hover .card-mini-content span {
  opacity: 1;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 2px;
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, -10px);
  }

  60% {
    transform: translate(-50%, -5px);
  }
}

@media (max-width: 968px) {
  .hero-overlay {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.98) 0%,
        rgba(0, 0, 0, 0.90) 40%,
        rgba(0, 0, 0, 0.65) 70%,
        transparent 100%);
  }

  .hero-container {
    justify-content: center;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .hero-mini-benefits {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-bottom-cards {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 2rem;
  }

  .hero-logo-large {
    margin-left: 0;
    margin-top: -3rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .hero-logo-large img {
    max-width: 95%;
    width: 95%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 1));
  }

  .hero-desc {
    font-size: 1rem;
    padding: 0 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1), 0 4px 15px rgba(0, 0, 0, 1);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 3rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 3rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1.2rem 2rem;
    border-radius: 2px;
  }

  /* Removed button overrides to keep PC styling */

  .hero-mini-benefits {
    flex-wrap: nowrap;
    gap: 1rem;
    margin-left: 0;
    width: 100%;
    justify-content: center;
    padding: 0 10px;
  }

  .mini-benefit {
    gap: 0.5rem;
    font-size: 0.6rem;
    letter-spacing: 1px;
    opacity: 0.8;
  }

  .mini-benefit svg {
    width: 18px;
    height: 18px;
  }

  .mini-benefit strong {
    font-size: 0.6rem;
    font-weight: 400;
  }

  .desktop-break {
    display: none;
  }
}.categories-section {
  padding: 0 0 6rem 0;
  margin-top: -80px;
  background-color: transparent;
  position: relative;
  z-index: 10;
}

.section-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 4px;
  color: var(--gold-metallic);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.title-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.title-separator .line {
  height: 1px;
  width: 40px;
  background: var(--gold-metallic);
  opacity: 0.5;
}

.title-separator .diamond {
  width: 6px;
  height: 6px;
  background: var(--gold-metallic);
  transform: rotate(45deg);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.category-card {
  height: 380px;
  background: #050505;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}

.category-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.9;
}

.category-card:hover .category-bg-image {
  transform: scale(1.1);
  opacity: 1;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  mask-image: linear-gradient(to top, black 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 30%, transparent 100%);
  z-index: 1;
  transition: height 0.4s ease;
}

.category-card:hover::after {
  height: 80%;
}

.category-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(10px);
  transition: transform 0.5s ease;
}

.category-card:hover .category-content {
  transform: translateY(0);
}

.category-icon-wrapper {
  color: var(--gold-metallic);
  margin-bottom: 1rem;
  z-index: 1;
}

.category-icon-wrapper svg {
  width: 28px;
  height: 28px;
  stroke-width: 1;
}

.category-text {
  z-index: 1;
}

.category-text h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-metallic);
  letter-spacing: 1.5px;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.category-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.category-card:hover .category-link {
  color: #eaeaea;
}

/* Promo Banner */
.promo-banner {
  background: #030303;
  border: 1px solid rgba(194, 168, 120, 0.15);
  border-radius: 8px;
  padding: 3.5rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(194, 168, 120, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(194, 168, 120, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.promo-banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: radial-gradient(rgba(194, 168, 120, 0.2) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 70%);
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 70%);
}

.promo-left, .promo-right {
  position: relative;
  z-index: 1;
  flex: 1;
}

.promo-divider {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(194, 168, 120, 0.3), transparent);
  margin: 0 4rem;
  z-index: 1;
}

.promo-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
}

.promo-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.serif-text {
  font-family: var(--font-serif);
}

.sans-bold {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 2px;
}

.silver-text {
  color: #e0e0e0;
}

.promo-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #888;
  line-height: 1.6;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
}

.promo-btn {
  background: transparent;
  border: 1px solid rgba(194, 168, 120, 0.4);
  color: var(--gold-metallic);
  padding: 0.7rem 1.8rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.promo-btn:hover {
  background: rgba(194, 168, 120, 0.1);
  border-color: var(--gold-metallic);
}

.frete-info {
  text-align: left;
}

.frete-title {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.frete-title .silver-text {
  font-size: 1.1rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 2px;
  color: #aaa;
}

.frete-desc {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
}

.frete-desc .gold-text {
  font-weight: 500;
}

.truck-icon-large {
  color: var(--gold-metallic);
  display: flex;
  align-items: center;
  justify-content: center;
}

.truck-icon-large svg {
  width: 85px;
  height: 85px;
  stroke-width: 1;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .promo-banner {
    flex-direction: column;
    gap: 3rem;
    padding: 2.5rem;
    text-align: center;
  }
  
  .promo-right {
    flex-direction: column;
    text-align: center;
  }
  
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-metallic);
  letter-spacing: 1.5px;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.category-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.category-card:hover .category-link {
  color: #eaeaea;
}

/* Promo Banner */
.promo-banner {
  background: #030303;
  border: 1px solid rgba(194, 168, 120, 0.15);
  border-radius: 8px;
  padding: 3.5rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(194, 168, 120, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(194, 168, 120, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.promo-banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: radial-gradient(rgba(194, 168, 120, 0.2) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 70%);
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 70%);
}

.promo-left, .promo-right {
  position: relative;
  z-index: 1;
  flex: 1;
}

.promo-divider {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(194, 168, 120, 0.3), transparent);
  margin: 0 4rem;
  z-index: 1;
}

.promo-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
}

.promo-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.serif-text {
  font-family: var(--font-serif);
}

.sans-bold {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 2px;
}

.silver-text {
  color: #e0e0e0;
}

.promo-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #888;
  line-height: 1.6;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
}

.promo-btn {
  background: transparent;
  border: 1px solid rgba(194, 168, 120, 0.4);
  color: var(--gold-metallic);
  padding: 0.7rem 1.8rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.promo-btn:hover {
  background: rgba(194, 168, 120, 0.1);
  border-color: var(--gold-metallic);
}

.frete-info {
  text-align: left;
}

.frete-title {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.frete-title .silver-text {
  font-size: 1.1rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 2px;
  color: #aaa;
}

.frete-desc {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
}

.frete-desc .gold-text {
  font-weight: 500;
}

.truck-icon-large {
  color: var(--gold-metallic);
  display: flex;
  align-items: center;
  justify-content: center;
}

.truck-icon-large svg {
  width: 85px;
  height: 85px;
  stroke-width: 1;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .promo-banner {
    flex-direction: column;
    gap: 3rem;
    padding: 2.5rem;
    text-align: center;
  }
  
  .promo-right {
    flex-direction: column;
    text-align: center;
  }
  
  .frete-title, .frete-desc {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .categories-section {
    margin-top: 20px;
    padding-top: 2rem;
  }
  
  .categories-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  
  .category-card {
    width: 100%;
    height: 70vh;
    border-radius: 0;
    border: none;
    padding: 3rem 2rem;
  }
  
  .section-container {
    padding-left: 0;
    padding-right: 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .category-card {
    height: 75vh;
  }
  
  .category-icon-wrapper svg {
    width: 32px;
    height: 32px;
  }
  
  .category-text h3 {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }
  
  .promo-banner {
    border-radius: 0;
    border: none;
    margin-bottom: 0;
  }
}
.carousel-banners-section {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 600px; /* Aumentando altura para ficar mais imponente */
  overflow: hidden;
  margin-bottom: 6rem;
  z-index: 10;
}

.carousel-banners-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  /* Efeito fotográfico premium */
  filter: contrast(1.05) saturate(1.1);
}

.carousel-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.carousel-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
}

.carousel-content.align-left {
  justify-content: flex-start;
}

.carousel-content.align-right {
  justify-content: flex-end;
}

.carousel-content.align-center {
  justify-content: center;
  text-align: center;
}

.carousel-text-box {
  max-width: 550px;
  transform: translateY(20px);
  opacity: 0;
  animation: slideUpFade 0.8s forwards 0.3s;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-text-box:hover {
  transform: translateY(-5px);
}

@keyframes slideUpFade {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.carousel-category {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-metallic);
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  position: relative;
}

.carousel-category::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40%;
  height: 1px;
  background: var(--gold-metallic);
}

.carousel-content.align-center .carousel-category::after {
  left: 30%;
}

.carousel-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.carousel-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  letter-spacing: 1px;
  margin-bottom: 3rem;
}

.carousel-btn {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(var(--gold-rgb), 0.5);
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
}

.carousel-btn:hover {
  border-color: var(--gold-metallic);
  color: var(--gold-metallic);
  background: rgba(var(--gold-rgb), 0.1);
  box-shadow: 0 5px 20px rgba(var(--gold-rgb), 0.2);
  transform: translateY(-2px);
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  color: var(--gold-metallic);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}

.carousel-nav-btn:hover {
  background: rgba(20, 20, 20, 0.9);
  border-color: var(--gold-metallic);
  box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.3);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn.prev {
  left: 2rem;
}

.carousel-nav-btn.next {
  right: 2rem;
}

.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(255,255,255,0.4);
}

.carousel-dot.active {
  background: var(--gold-metallic);
  border-color: rgba(var(--gold-rgb), 0.5);
  transform: scale(1.4);
  box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.4);
}

@media (max-width: 1024px) {
  .carousel-banners-section {
    height: 500px;
  }
  
  .carousel-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .carousel-banners-section {
    height: 75vh;
    margin-bottom: 2rem;
  }
  
  .carousel-content {
    padding: 0 1.5rem;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding-bottom: 6rem;
  }
  
  .carousel-content.align-left, 
  .carousel-content.align-right {
    justify-content: flex-end;
    text-align: center;
  }

  .carousel-category {
    font-size: 0.65rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
  }

  .carousel-category::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .carousel-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
  }

  .carousel-desc {
    font-size: 0.85rem;
    margin-bottom: 2rem;
  }

  .carousel-btn {
    padding: 1rem 2rem;
    font-size: 0.75rem;
    width: 100%;
    max-width: 300px;
  }
  
  .carousel-nav-btn {
    display: flex !important;
    width: 40px;
    height: 40px;
  }

  .carousel-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .carousel-nav-btn.prev {
    left: 0.5rem;
  }

  .carousel-nav-btn.next {
    right: 0.5rem;
  }
}
.highlights-section {
  padding: 8rem 0;
  background-color: transparent;
  position: relative;
}

.highlights-track {
  display: flex;
  width: max-content;
  /* Animação movida para o track inteiro, transladando 50% */
  animation: scrollLeft 40s linear infinite;
}

.highlights-track:hover {
  animation-play-state: paused;
}

.track-inner {
  display: flex;
  gap: 2rem;
  padding-right: 2rem; /* espaço para colar perfeitamente no próximo */
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 2rem;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.product-card {
  position: relative;
  overflow: hidden;
  height: 400px;
  width: 250px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
}

.product-card:hover {
  border-color: var(--gold-metallic);
  box-shadow: 0 0 30px rgba(var(--gold-rgb), 0.05);
  transform: translateY(-10px);
}

.product-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  margin: 0;
}

.product-image {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  mask-image: linear-gradient(to top, black 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 30%, transparent 100%);
  z-index: 1;
  transition: height 0.4s ease;
}

.product-card:hover::before {
  height: 80%;
}

.product-info {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-info {
  transform: translateY(0);
}

.product-name {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.product-brand {
  font-size: 0.75rem;
  color: var(--gold-metallic);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.product-price {
  font-family: var(--font-sans);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.product-installments {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.btn-buy-icon {
  background: transparent;
  border: 1px solid rgba(194, 168, 120, 0.5);
  color: var(--gold-metallic);
  width: 35px;
  height: 35px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-buy-icon:hover {
  background: var(--gold-metallic);
  color: #000;
}

.view-all-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.btn-view-all {
  background: transparent;
  border: 1px solid rgba(var(--gold-rgb), 0.5);
  color: var(--gold-metallic);
  padding: 0.75rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-view-all:hover {
  background: rgba(var(--gold-rgb), 0.1);
  border-color: var(--gold-metallic);
}

@media (max-width: 768px) {
  /* ... mantem para grids ... */
}

@media (max-width: 600px) {
  .highlights-section {
    padding: 3rem 0;
  }

  /* No mobile, configuramos a track e track-inner para formar 2 linhas horizontais que scrollam juntas */
  .highlights-track {
    /* O transform: -50% continua funcionando se as track-inners tiverem larguras perfeitamente iguais */
    display: flex;
    animation: scrollLeft 30s linear infinite; /* Força a animação aqui caso tenha se perdido */
    width: max-content;
  }

  .track-inner {
    display: grid;
    grid-template-rows: repeat(2, 1fr); /* 2 fileiras */
    grid-auto-columns: 160px; /* Largura do card no mobile */
    grid-auto-flow: column;
    gap: 15px;
    padding-right: 15px; /* espaço entre o primeiro clone e o original */
    width: max-content;
  }

  .product-card {
    height: 250px;
    width: 160px;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .product-card::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    height: 60%;
  }

  .product-info {
    padding: 1rem 0.5rem;
    transform: none; /* Anula o translateY no mobile */
  }

  .product-name {
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 0.15rem;
  }

  .product-brand {
    font-size: 0.55rem;
    margin-bottom: 0.5rem;
  }

  .product-price {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
  }

  .product-installments {
    font-size: 0.6rem;
    margin-bottom: 0;
  }

  .btn-buy-icon {
    display: none; /* No mobile a foto toda é clicável, mais limpo */
  }
}
.about-section {
  padding: 6rem 0;
  background-color: #000; /* Preto profundo para luxo */
  color: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.about-divider {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2rem;
  width: 60%;
}

.about-divider .line {
  height: 1px;
  background: var(--gold-gradient);
  flex-grow: 1;
  opacity: 0.5;
}

.about-divider .diamond {
  width: 6px;
  height: 6px;
  background: var(--gold-metallic);
  transform: rotate(45deg);
  margin: 0 10px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--gold-metallic);
  border: 1px solid var(--gold-metallic);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transition: all 0.4s ease;
}

.about-btn:hover {
  background: var(--gold-metallic);
  color: #000;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 4px;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-title {
    font-size: 2rem;
  }
  .about-divider {
    width: 100%;
  }
  .about-image-wrapper {
    height: 400px;
  }
}
.benefits-row {
  background-color: transparent;
  padding: 6rem 0;
  /* Mais respiro */
  position: relative;
}

.benefits-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(145deg, rgba(45, 35, 20, 0.35) 0%, rgba(10, 8, 5, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(191, 161, 95, 0.12);
  border-top: 1px solid rgba(191, 161, 95, 0.3);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  flex-wrap: nowrap;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.benefit-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  transition: transform 0.3s ease;
}

.benefit-list-item:hover {
  transform: translateY(-3px);
}

.benefit-icon {
  color: var(--gold-metallic);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(var(--gold-rgb), 0.3));
}

.benefit-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.benefit-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.benefit-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .benefits-list {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 3rem 2rem;
  }
}

@media (max-width: 600px) {
  .benefits-row {
    padding: 4rem 0;
  }

  .benefits-list {
    padding: 2.5rem 1.5rem;
    width: 90%;
    margin: 0 auto;
  }

  .benefit-list-item {
    width: 100%;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 1rem;
  }
}
.social-proof-section {
  padding: 8rem 0;
  background-color: transparent;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.social-proof-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(191, 161, 95, 0.06) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  /* Aumentado */
  margin-bottom: 3rem;
  /* Aumentado */
}

.testimonial-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  background: linear-gradient(160deg, rgba(45, 35, 20, 0.35) 0%, rgba(10, 8, 5, 0.8) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(191, 161, 95, 0.12);
  border-top: 1px solid rgba(191, 161, 95, 0.3);
  border-radius: 16px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 2;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(191, 161, 95, 0.15);
  border-top: 1px solid rgba(191, 161, 95, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(var(--gold-rgb), 0.1);
}

.testimonial-card.highlight {
  border-color: rgba(191, 161, 95, 0.15);
  border-top: 1px solid rgba(191, 161, 95, 0.4);
  background: linear-gradient(160deg, rgba(40, 30, 15, 0.4) 0%, rgba(10, 5, 0, 0.8) 100%);
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(var(--gold-rgb), 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.testimonial-card.highlight:hover {
  transform: scale(1.05) translateY(-5px);
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card.highlight .testimonial-avatar {
  border-color: var(--gold-metallic);
  box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.4);
}

.testimonial-card:hover .testimonial-avatar {
  border-color: rgba(var(--gold-rgb), 0.5);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.25rem;
}

.star-icon {
  fill: var(--gold-metallic);
  filter: drop-shadow(0 0 2px rgba(var(--gold-rgb), 0.5));
}

.testimonial-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.testimonial-author h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--gold-metallic);
  font-weight: 600;
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 1.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.dot.active {
  background-color: var(--gold-metallic);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(var(--gold-rgb), 0.6);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .social-proof-section {
    padding: 4rem 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    width: 90%;
    margin: 0 auto;
  }

  .testimonial-card.highlight {
    transform: none;
  }

  .testimonial-card.highlight:hover {
    transform: translateY(-5px);
  }
}.newsletter-section {
  position: relative;
  padding: 8rem 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  overflow: hidden;
  border-top: none;
}

.newsletter-bg-left,
.newsletter-bg-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  filter: brightness(1.1) contrast(1.2) saturate(1.1);
  z-index: 1;
}

.newsletter-bg-left {
  left: 0;
  background-image: url('/images/perfume_luxury.png');
  background-position: center;
  mask-image: linear-gradient(to right, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
}

.newsletter-bg-right {
  right: 0;
  background-image: url('/images/watches_premium.png');
  background-position: center;
  mask-image: linear-gradient(to left, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 0%, transparent 100%);
}

.newsletter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(5, 5, 5, 0.8) 0%, rgba(10, 10, 10, 0.7) 100%);
  z-index: 2;
}

.newsletter-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 4rem 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.newsletter-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold-metallic);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.newsletter-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.newsletter-divider::before,
.newsletter-divider::after {
  content: '';
  height: 1px;
  width: 80px;
  background: var(--gold-metallic);
  opacity: 0.5;
}

.newsletter-divider .diamond {
  color: var(--gold-metallic);
  font-size: 0.9rem;
  margin: 0 20px;
  filter: drop-shadow(0 0 5px rgba(var(--gold-rgb), 0.5));
}

.newsletter-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(var(--gold-rgb), 0.25);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(5px);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold-metallic);
  background: rgba(15, 15, 15, 0.9);
  box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.15);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
  background: var(--gold-gradient);
  color: var(--bg-deep-black);
  border: none;
  padding: 0 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(var(--gold-rgb), 0.2);
}

.newsletter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(var(--gold-rgb), 0.4);
}

@media (max-width: 768px) {
  .newsletter-content {
    padding: 3rem 2rem;
  }
}

@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-btn {
    padding: 1.2rem;
  }
}
.footer-section,
.footer {
  background-color: transparent;
  padding: 10rem 5% 3rem;
  border-top: none;
}

.footer-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-left: 32px;
  padding-right: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-logo-img {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(var(--gold-rgb), 0.4);
  color: var(--gold-metallic);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gold-metallic);
  color: var(--bg-deep-black);
}

.footer-title {
  font-family: var(--font-sans);
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.footer-links a {
  color: var(--text-muted);
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

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

.footer-contact-info {
  margin-top: 1.5rem;
}

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

.contact-icon {
  color: var(--gold-metallic);
  margin-top: 2px;
}

.contact-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.contact-text.highlight {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.payment-flags {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.pay-flag {
  background: #fff;
  color: #333;
  font-weight: 700;
  font-size: 0.65rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pix-flag {
  background: #32BCAD;
  color: #fff;
  gap: 0.3rem;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lock-icon {
  color: var(--gold-metallic);
}

.security-title {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.security-desc {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: none;
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  margin: 0 0.2rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

.footer-credits {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.kore-link {
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.kore-link:hover {
  opacity: 1;
}

.kore-logo {
  height: 55px;
  width: auto;
  display: block;
}

.admin-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(201, 168, 76, 0.5);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  text-decoration: none;
}

.admin-footer-link:hover {
  color: var(--gold-metallic);
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {

  .footer-section,
  .footer {
    padding: 6rem 5% 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-desc {
    text-align: center;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-align: center;
    padding-top: 1rem;
  }

  .footer-separator {
    display: none;
  }

  .footer-copyright {
    font-size: 0.75rem;
    margin-bottom: 0;
  }

  .footer-credits {
    justify-content: center;
    margin-top: 0;
    font-size: 0.65rem;
  }

  .kore-logo {
    height: 45px;
  }
}.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.85);
  border: 1px solid var(--gold-metallic, #cda45e);
  color: var(--gold-metallic, #cda45e);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 10px rgba(205, 164, 94, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  outline: none;
}

.scroll-to-top-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover {
  background: var(--gold-metallic, #cda45e);
  color: #111;
  box-shadow: 0 6px 25px rgba(205, 164, 94, 0.4);
  transform: translateY(-4px) scale(1.05);
}

.scroll-to-top-btn:hover svg {
  transform: translateY(-2px);
}

.scroll-to-top-btn:active {
  transform: translateY(-1px) scale(0.95);
}

/* Quando estiver no catálogo, posiciona o botão acima do grupo do Fale Conosco/Carrinho */
body.is-catalogo .scroll-to-top-btn {
  bottom: 145px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.3s forwards ease-out;
}

@media (max-width: 768px) {
  .scroll-to-top-btn {
    bottom: 30px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
  
  body.is-catalogo .scroll-to-top-btn {
    bottom: 140px;
  }

  .scroll-to-top-btn svg {
    width: 18px;
    height: 18px;
  }
}
.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -500px;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: #050505;
  border-left: 1px solid rgba(var(--gold-rgb), 0.2);
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.8);
}

@media (max-width: 600px) {
  .cart-drawer {
    width: 85vw;
  }
}

.cart-drawer.open {
  right: 0;
}

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

.cart-header h2 {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--gold-metallic);
  margin: 0;
}

.cart-close-btn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.cart-close-btn:hover {
  color: var(--gold-metallic);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.cart-empty {
  text-align: center;
  color: #888;
  margin-top: 4rem;
}

.btn-continue {
  margin-top: 2rem;
  background: transparent;
  color: var(--gold-metallic);
  border: 1px solid var(--gold-metallic);
  padding: 1rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-continue:hover {
  background: rgba(var(--gold-rgb), 0.1);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cart-item {
  display: flex;
  gap: 1.5rem;
}

.cart-item-image {
  width: 90px;
  height: 110px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-details h3 {
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 0.5rem 0;
  color: #fff;
}

.cart-item-price {
  font-size: 0.9rem;
  color: #aaa;
  margin: 0 0 1rem 0;
}

.cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  overflow: hidden;
}

.quantity-control button {
  background: transparent;
  border: none;
  color: #fff;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quantity-control button:hover {
  background: rgba(255,255,255,0.1);
}

.quantity-control span {
  font-size: 0.9rem;
  width: 30px;
  text-align: center;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: #888;
  font-size: 0.75rem;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.cart-item-remove:hover {
  color: #ff6b6b;
}

.cart-footer {
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #fff;
}

.cart-shipping-note {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 2rem;
  text-align: center;
}

.btn-checkout {
  width: 100%;
  background: var(--gold-metallic);
  color: #000;
  border: none;
  padding: 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn-checkout:hover {
  background: #fff;
}

.btn-continue-shopping {
  width: 100%;
  margin-top: 1rem;
  background: transparent;
  color: #888;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-continue-shopping:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.colecao-header-nav {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: transparent;
}

.colecao-header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
}

.colecao-header-spacer {
  flex: 1;
}

.colecao-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.colecao-logo-img-highlight {
  height: 400px;
  width: auto;
  max-width: none;
  filter: drop-shadow(0px 0px 15px rgba(191, 161, 95, 0.5));
  transition: transform 0.3s ease;
}

.colecao-logo-img-highlight:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .colecao-header-container {
    padding: 1rem;
    align-items: center;
    justify-content: center;
  }
  
  .colecao-logo-img-highlight {
    height: 220px;
    transform: none;
    margin-top: 0.5rem;
  }

  .colecao-logo-img-highlight:hover {
    transform: scale(1.02);
  }
}/* ColecaoPage.css */

.colecao-layout-root {
  background-color: #000;
  background-image: url('/background-catalogo.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  color: #fff;
  font-family: var(--font-sans);
}

.colecao-layout-body {
  display: flex;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.colecao-main-content {
  flex: 1;
  max-width: 1400px;
  width: 100%;
  padding: 2rem;
  overflow-y: auto;
}

/* Sidebar always hidden - replaced by drawer */
.colecao-sidebar-wrapper {
  display: none !important;
}

/* Hero Section */
.colecao-hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.colecao-hero {
  text-align: center;
  padding: 4rem 2rem 2rem 2rem;
  background: transparent;
  margin-bottom: 0rem;
}

.colecao-hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  letter-spacing: 10px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold-metallic);
  text-transform: uppercase;
  text-shadow: 1px 1px 15px rgba(191, 161, 95, 0.4);
}

.colecao-hero-subtitle {
  color: var(--gold-metallic);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.colecao-hero-lock {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.colecao-hero-lock svg {
  width: 14px;
  height: 14px;
}

/* Toolbar (Filters) */
.colecao-toolbar {
  display: block;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1rem;
}

.colecao-filters-pills {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.colecao-filters-pills::-webkit-scrollbar {
  display: none;
}

.colecao-pill {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0 0 0.5rem 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.colecao-pill:hover {
  color: #fff;
}

.colecao-pill.active {
  background: transparent;
  color: var(--gold-metallic);
  font-weight: 500;
}

.colecao-pill.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--gold-metallic);
}

.colecao-sort-dropdown {
  display: none; /* Removed as requested */
}

/* Grid */
.colecao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 1200px) {
  .colecao-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .colecao-hero-title {
    font-size: 3rem;
    letter-spacing: 6px;
  }
  .colecao-hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  .colecao-hero-lock {
    display: none;
  }
  .colecao-sort-label {
    display: none;
  }
  .colecao-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .colecao-layout-body {
    flex-direction: column;
  }

  .colecao-main-content {
    padding: 1rem;
  }

  .colecao-sidebar-wrapper {
    order: -1;
    margin-bottom: 0;
    width: 100%;
    padding: 2rem 1rem 0 1rem;
  }

}

/* Card */
.colecao-card-premium {
  background: #080808;
  border: 1px solid rgba(191, 161, 95, 0.1);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.colecao-card-premium:hover {
  border-color: rgba(191, 161, 95, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), 0 0 20px rgba(191, 161, 95, 0.05);
}

.colecao-card-img-wrapper {
  width: 100%;
  aspect-ratio: 4/5;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.colecao-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.colecao-page-arrow {
  background: transparent;
  border: 1px solid var(--gold-metallic);
  color: var(--gold-metallic);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.colecao-page-arrow:hover:not(.disabled) {
  background: rgba(191, 161, 95, 0.1);
  transform: scale(1.05);
}

.colecao-page-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.colecao-page-info {
  font-family: var(--font-sans);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.colecao-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.colecao-card-premium:hover .colecao-card-img-wrapper img {
  transform: scale(1.05);
}

.colecao-card-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.colecao-card-name {
  font-family: var(--font-sans);
  color: var(--gold-metallic);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  letter-spacing: 2px;
}

.colecao-card-brand {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

.colecao-card-price {
  font-family: var(--font-sans);
  color: var(--gold-metallic);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.colecao-add-btn {
  margin-top: auto;
  width: 100%;
  background: transparent;
  color: var(--gold-metallic);
  border: 1px solid rgba(191, 161, 95, 0.3);
  padding: 0.8rem;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.colecao-add-btn span {
  position: absolute;
  right: 1.2rem;
  font-size: 1rem;
  font-weight: 300;
}

.colecao-add-btn:hover {
  background: rgba(191, 161, 95, 0.1);
  border-color: var(--gold-metallic);
}

.colecao-add-btn.added {
  background: rgba(191, 161, 95, 0.2);
  border-color: var(--gold-metallic);
  color: #fff;
}

/* Bottom Badges */
.colecao-bottom-badges {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.colecao-badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.colecao-badge-item svg {
  width: 24px;
  height: 24px;
  color: var(--gold-metallic);
}

.colecao-badge-text h4 {
  font-size: 0.8rem;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.colecao-badge-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Floating Action Buttons */
.colecao-fab-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.colecao-fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.colecao-fab:hover {
  transform: scale(1.1);
}

.colecao-fab-whatsapp {
  background: transparent;
  color: var(--gold-metallic);
  border-color: var(--gold-metallic);
}

.colecao-fab-whatsapp:hover {
  background: rgba(191, 161, 95, 0.1);
  color: #fff;
  box-shadow: 0 5px 25px rgba(191, 161, 95, 0.3);
}

.colecao-fab-cart {
  background: #000;
  color: var(--gold-metallic);
  border-color: var(--gold-metallic);
  position: relative;
  display: flex; /* Visible on all screens */
}

.colecao-fab-cart:hover {
  background: var(--gold-metallic);
  color: #000;
  box-shadow: 0 5px 25px rgba(191, 161, 95, 0.5);
}

.colecao-fab-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  border: 2px solid #000;
}

/* Sidebar Area - Cart */
.colecao-sidebar-wrapper {
  width: 380px;
  flex-shrink: 0;
  background: transparent;
  padding: 6.2rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}

.colecao-cart-panel {
  background: #0A0A0A;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(191, 161, 95, 0.15);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 2rem;
  max-height: calc(100vh - 4rem);
  overflow: hidden;
}

.colecao-cart-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #fff;
  text-transform: uppercase;
}

.colecao-cart-count {
  font-size: 0.9rem;
  color: var(--gold-metallic);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.colecao-cart-items {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.colecao-cart-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  position: relative;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.colecao-cart-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.colecao-cart-item img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  border-radius: 8px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.colecao-cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-right: 2rem; /* Add space for remove button */
}

.colecao-cart-item-info h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #fff;
  font-weight: 400;
  margin: 0 0 0.2rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.colecao-cart-item-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 0.3rem 0;
}

.colecao-cart-item-price {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-metallic);
}

.colecao-cart-remove {
  background: transparent;
  color: var(--gold-metallic);
  border: none;
  font-size: 1.2rem;
  font-weight: 300;
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  top: 0;
  right: 0;
  transition: transform 0.2s;
}

.colecao-cart-remove:hover {
  transform: scale(1.1);
  color: #fff;
}

.colecao-cart-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.colecao-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--gold-metallic);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.colecao-cart-subtotal strong {
  font-size: 1.1rem;
  font-weight: 400;
}

.colecao-cart-whatsapp {
  background: linear-gradient(135deg, #a67c00 0%, #bf953f 50%, #b38728 100%);
  color: #fff;
  border: none;
  padding: 1rem;
  font-weight: 500;
  font-size: 0.85rem;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: pointer;
}

.colecao-cart-whatsapp:hover {
  filter: brightness(1.1);
}

.colecao-cart-whatsapp-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: center;
}

.colecao-cart-whatsapp-info svg {
  width: 14px;
  height: 14px;
  color: var(--gold-metallic);
  flex-shrink: 0;
}

.colecao-cart-whatsapp-info-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.colecao-cart-whatsapp-info-text strong {
  color: var(--gold-metallic);
  font-weight: 400;
}

.colecao-cart-badges {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

.colecao-cart-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  flex: 1;
}

.colecao-cart-badge svg {
  width: 24px;
  height: 24px;
  color: var(--gold-metallic);
}

.colecao-cart-badge span {
  font-size: 0.55rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.4;
}




/* === MOBILE DRAWER - MINHA SELEÇÃO === */
.colecao-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1100;
}

.colecao-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(191, 161, 95, 0.3);
  border-radius: 20px 20px 0 0;
  padding: 1.5rem 1.5rem 2rem;
  z-index: 1200;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* No PC: drawer menor, canto inferior direito */
@media (min-width: 769px) {
  .colecao-drawer {
    left: auto;
    right: 1.5rem;
    width: 360px;
    bottom: 0;
    border-radius: 16px 16px 0 0;
    max-height: 70vh;
  }
}

.colecao-drawer.open {
  transform: translateY(0);
}

.colecao-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.colecao-drawer-close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.colecao-drawer-close:hover {
  border-color: var(--gold-metallic);
  color: var(--gold-metallic);
}.colecao-product-page {
  padding: 4rem 2rem 6rem;
  display: flex;
  justify-content: center;
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.colecao-product-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  gap: 5rem;
  align-items: center;
}

.colecao-layout-root {
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('/background-catalogo.png') !important;
}

@media (max-width: 900px) {
  .colecao-product-container {
    flex-direction: column;
    gap: 3rem;
  }
}

.colecao-product-gallery {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.colecao-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #cda45e;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  align-self: flex-start;
  text-decoration: none;
}

.colecao-back-link:hover {
  color: #e8c784;
  transform: translateX(-5px);
}

.colecao-product-main-img-wrapper {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(205, 164, 94, 0.2);
  background: linear-gradient(145deg, #111, #0a0a0a);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.colecao-product-main-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.colecao-product-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.colecao-product-main-img-wrapper:hover .colecao-product-main-img {
  transform: scale(1.05);
}

.colecao-product-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.colecao-product-thumb {
  aspect-ratio: 1/1;
  border: 1px solid rgba(205, 164, 94, 0.1);
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #050505;
}

.colecao-product-thumb.active {
  border-color: #cda45e;
}

.colecao-product-thumb:hover {
  border-color: #cda45e;
}

.colecao-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

/* Variações visuais nas miniaturas e na foto principal */
.colecao-product-thumb.t1 img, .colecao-product-main-img-wrapper.t1 img {
  transform: scale(1.8) translateY(-10%);
  filter: brightness(0.9) contrast(1.1);
}

.colecao-product-thumb.t2 img, .colecao-product-main-img-wrapper.t2 img {
  transform: scale(2.2) translateX(15%) translateY(10%);
  filter: sepia(0.3) brightness(0.8);
}

.colecao-product-thumb.t3 img, .colecao-product-main-img-wrapper.t3 img {
  transform: scale(1.5) translateY(20%);
  filter: saturate(1.2) brightness(0.85);
}

.colecao-product-thumb.t4 img, .colecao-product-main-img-wrapper.t4 img {
  transform: scale(2.5) translateX(-10%) translateY(-15%);
  filter: contrast(1.3) grayscale(0.2);
}

.colecao-product-thumb.t5 img, .colecao-product-main-img-wrapper.t5 img {
  transform: scale(1.3) translateY(5%);
  filter: sepia(0.5) contrast(1.1);
}

.colecao-product-details {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
}

.colecao-product-brand {
  color: #cda45e;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.colecao-product-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: #cda45e;
  font-weight: 400;
}

@media (max-width: 768px) {
  .colecao-product-title {
    font-size: 2rem;
  }
}

.colecao-product-desc-curta {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  font-weight: 300;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.2rem;
}

.colecao-product-desc-completa {
  font-size: 0.88rem;
  color: #999;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 300;
  white-space: pre-wrap;
}

.colecao-product-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.colecao-btn-whatsapp {
  padding: 1.2rem 2rem;
  background: linear-gradient(90deg, #cda45e 0%, #e8c784 50%, #cda45e 100%);
  background-size: 200% auto;
  color: #000;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.colecao-btn-whatsapp:hover {
  background-position: right center;
  box-shadow: 0 10px 20px rgba(205, 164, 94, 0.2);
  transform: translateY(-2px);
}

.colecao-product-aviso {
  font-size: 0.8rem;
  color: #777;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.5px;
}
/* AdminCatalogoPage.css */



/* Main */
.admin-main {
  flex: 1;
  padding: 3rem 4rem;
  background-color: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(5px);
}

.admin-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.admin-page-title {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.admin-page-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.admin-btn-primary {
  background: transparent;
  border: 1px solid var(--gold-metallic);
  color: var(--gold-metallic);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.admin-btn-primary:hover {
  background: var(--gold-glow);
}

/* Table */
.admin-table-container {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  padding: 1.2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table td {
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-td-product {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-table-img {
  width: 45px;
  height: 45px;
  border-radius: 4px;
  object-fit: cover;
  background: #000;
}

.admin-table-prod-info {
  display: flex;
  flex-direction: column;
}

.admin-table-prod-info strong {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.admin-table-prod-info span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.admin-status-badge {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.admin-status-badge.active {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
}

.admin-status-badge.inactive {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

.admin-actions-cell {
  display: flex;
  gap: 0.5rem;
}

.admin-icon-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.3rem;
  border-radius: 4px;
  transition: all 0.2s;
}

.admin-icon-btn svg {
  width: 18px;
  height: 18px;
}

.admin-icon-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-metallic);
}

/* Pagination */
.admin-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.page-num,
.page-nav-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: all 0.2s;
}

.page-num:hover,
.page-nav-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.page-num.active {
  color: var(--gold-metallic);
  font-weight: bold;
}

.page-dots {
  color: var(--text-muted);
}

/* Modal Adicionar Produto */
.admin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.admin-modal {
  background: #111;
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  border: 1px solid rgba(191, 161, 95, 0.3);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

.admin-modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-modal-header h2 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: var(--font-sans);
}

.admin-modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.admin-modal-close:hover {
  color: #ff4a4a;
}

.admin-modal-body {
  padding: 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.admin-form-row {
  display: flex;
  gap: 1.5rem;
}

.admin-form-row>* {
  flex: 1;
}

.admin-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-form-group.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.admin-form-group label {
  color: var(--gold-metallic);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-form-group input[type="text"],
.admin-form-group input[type="number"],
.admin-form-group select,
.admin-form-group textarea {
  background: #000;
  border: 1px solid rgba(191, 161, 95, 0.3);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

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

.admin-form-group textarea {
  resize: vertical;
}

.admin-modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.admin-btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-muted);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.admin-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}/* AdminCatalogoPage.css */

.admin-layout-root {
  display: flex;
  min-height: 100vh;
  background-color: #0A0A0A;
  background-image: url('/background-catalogo.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  font-family: var(--font-sans);
}

/* Sidebar */
.admin-sidebar {
  width: 260px;
  background-color: #111;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.admin-logo-area {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-logo-img {
  max-width: 120px;
  margin: 0 auto 1rem;
}

.admin-subtitle {
  color: var(--gold-metallic);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-nav {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.3s;
}

.admin-nav-link svg {
  width: 18px;
  height: 18px;
}

.admin-nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.admin-nav-link.active {
  color: var(--gold-metallic);
}

.admin-nav-link.active svg {
  color: var(--gold-metallic);
}

.admin-nav-group {
  display: flex;
  flex-direction: column;
}

.admin-nav-link.has-child {
  justify-content: flex-start;
  position: relative;
}

.admin-nav-link.has-child .chevron {
  position: absolute;
  right: 1rem;
  width: 14px;
  height: 14px;
}

.admin-nav-sub {
  display: flex;
  flex-direction: column;
  margin-left: 2.8rem;
  margin-top: 0.5rem;
  gap: 0.5rem;
}

.admin-nav-sublink {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0.4rem 0;
  transition: color 0.3s;
}

.admin-nav-sublink:hover {
  color: #fff;
}

.admin-nav-sublink.active {
  color: var(--gold-metallic);
}

/* Main */
.admin-main {
  flex: 1;
  padding: 3rem 4rem;
  background-color: #0A0A0A;
}

.admin-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.admin-page-title {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.admin-page-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.admin-btn-primary {
  background: transparent;
  border: 1px solid var(--gold-metallic);
  color: var(--gold-metallic);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.admin-btn-primary:hover {
  background: var(--gold-glow);
}

/* Table */
.admin-table-container {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  padding: 1.2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table td {
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-td-product {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-table-img {
  width: 45px;
  height: 45px;
  border-radius: 4px;
  object-fit: cover;
  background: #000;
}

.admin-table-prod-info {
  display: flex;
  flex-direction: column;
}

.admin-table-prod-info strong {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.admin-table-prod-info span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.admin-status-badge {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.admin-status-badge.active {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
}

.admin-status-badge.inactive {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

.admin-actions-cell {
  display: flex;
  gap: 0.5rem;
}

.admin-icon-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.3rem;
  border-radius: 4px;
  transition: all 0.2s;
}

.admin-icon-btn svg {
  width: 18px;
  height: 18px;
}

.admin-icon-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-metallic);
}

/* Pagination */
.admin-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.page-num,
.page-nav-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: all 0.2s;
}

.page-num:hover,
.page-nav-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.page-num.active {
  color: var(--gold-metallic);
  font-weight: bold;
}

.page-dots {
  color: var(--text-muted);
}

/* Modal Adicionar Produto */
.admin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.admin-modal {
  background: #111;
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  border: 1px solid rgba(191, 161, 95, 0.3);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

.admin-modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-modal-header h2 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: var(--font-sans);
}

.admin-modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.admin-modal-close:hover {
  color: #ff4a4a;
}

.admin-modal-body {
  padding: 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.admin-form-row {
  display: flex;
  gap: 1.5rem;
}

.admin-form-row > * {
  flex: 1;
}

.admin-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-form-group.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.admin-form-group label {
  color: var(--gold-metallic);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-form-group input[type="text"],
.admin-form-group input[type="number"],
.admin-form-group select,
.admin-form-group textarea {
  background: #000;
  border: 1px solid rgba(191, 161, 95, 0.3);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

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

.admin-form-group textarea {
  resize: vertical;
}

.admin-modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.admin-btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-muted);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.admin-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* Premium Responsive Styles */
.admin-content-wrapper {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

.admin-mobile-header {
  display: none;
}

.admin-sidebar-close {
  display: none;
}

@media (max-width: 768px) {
  .admin-layout-root {
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
  }

  .admin-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.2rem;
    position: sticky;
    top: 0;
    z-index: 1001;
  }

  .admin-hamburger {
    background: transparent;
    border: none;
    color: var(--gold-metallic);
    cursor: pointer;
    padding: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .admin-hamburger svg {
    width: 24px;
    height: 24px;
  }

  .admin-mobile-title {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 270px !important;
    display: flex !important;
    flex-direction: column !important;
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.8);
    background-color: #111 !important;
  }

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

  .admin-sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 9999;
  }

  .admin-nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    flex: 1 !important;
    overflow-x: visible !important;
  }

  .admin-sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.2s;
  }

  .admin-sidebar-close:hover {
    color: #ff4a4a;
    background: rgba(255, 255, 255, 0.05);
  }

  .admin-main {
    padding: 1.5rem 1rem !important; /* Force smaller padding on mobile devices */
  }

  .admin-header-top {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .admin-header-top .admin-btn-primary {
    align-self: flex-start;
  }

  .admin-form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .admin-form-group.checkbox-group {
    margin-top: 0.5rem;
  }

  .admin-modal {
    max-width: 95%;
    max-height: 95vh;
  }

  .admin-modal-body {
    padding: 1.2rem;
    gap: 1rem;
  }
}

/* --- ESTILOS UNIFICADOS DO FORMULÁRIO DO MODAL --- */
.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  overflow-y: auto;
  flex: 1;
  padding-right: 0.5rem;
}

.admin-form-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.admin-cancel-btn {
  background: transparent;
  border: 1px solid #555;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.admin-cancel-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.admin-save-btn {
  background: var(--gold-metallic);
  color: #000;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.admin-save-btn:hover {
  background: #fff;
}

.admin-checkboxes-row {
  display: flex;
  gap: 2rem;
  flex-direction: row;
}

.admin-form-row-responsive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Forçar comportamento correto do Overlay e Modal no WebKit Mobile */
.admin-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background-color: rgba(0, 0, 0, 0.9) !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  backdrop-filter: blur(5px) !important;
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
}

.admin-modal {
  background: #111111 !important;
  background-color: #111111 !important;
  border: 1px solid rgba(191, 161, 95, 0.4) !important;
  width: 100% !important;
  max-width: 800px !important;
  max-height: 90vh !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9) !important;
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
}

@media (max-width: 768px) {
  .admin-modal {
    padding: 1.5rem 1.2rem !important;
    max-height: 95vh !important;
    width: 95% !important;
  }

  .admin-form-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
    padding-right: 0 !important;
  }

  .admin-checkboxes-row {
    flex-direction: column !important;
    gap: 0.8rem !important;
    align-items: flex-start !important;
  }

  .admin-form-row-responsive {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }

  .admin-form-actions {
    flex-direction: column-reverse !important;
    gap: 0.8rem !important;
    margin-top: 1.5rem !important;
    width: 100% !important;
  }

  .admin-cancel-btn,
  .admin-save-btn {
    width: 100% !important;
    text-align: center !important;
    padding: 1rem !important;
  }
  
  .admin-form-group {
    margin-bottom: 0.5rem;
  }
}
.products-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}

@media (max-width: 1200px) {
  .products-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .products-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .products-grid-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 1rem;
  }
}

.promo-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold-metallic, #d4af37);
  color: #000;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  z-index: 10;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.product-card-grid {
  position: relative;
  overflow: hidden;
  height: 500px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
}

.product-card-grid:hover {
  border-color: var(--gold-metallic);
  box-shadow: 0 0 30px rgba(var(--gold-rgb), 0.15);
  transform: translateY(-10px);
}

.product-card-grid .product-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  margin: 0;
}

.product-card-grid .product-image {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-card-grid:hover .product-image,
.product-card-grid:active .product-image {
  transform: scale(1.1);
  filter: brightness(0.5);
}

.product-card-grid::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 40%, transparent 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  mask-image: linear-gradient(to top, black 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 30%, transparent 100%);
  z-index: 1;
  transition: height 0.4s ease;
}

.product-card-grid:hover::before {
  height: 80%;
}

.product-card-grid .product-info {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 75%);
}

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

.product-card-grid .product-name {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.product-card-grid .product-brand {
  font-size: 0.75rem;
  color: var(--gold-metallic);
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.product-card-grid .product-price {
  font-family: var(--font-sans, sans-serif);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.product-card-grid .product-installments {
  font-size: 0.75rem;
  color: #ccc;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  margin-bottom: 1.2rem;
}

.product-card-grid .product-card-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.btn-add-cart {
  background: transparent;
  border: 1px solid var(--gold-metallic);
  color: var(--gold-metallic);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-add-cart:hover {
  background: var(--gold-metallic);
  border-color: var(--gold-metallic);
  color: #000;
}

/* Out of Stock styles */
.product-card-grid.out-of-stock .product-image {
  opacity: 0.5;
  filter: grayscale(100%);
}

.out-of-stock-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 4px;
}

.product-card-grid .btn-add-cart:hover {
  background: var(--gold-metallic);
  color: #000;
}

@media (max-width: 600px) {
  .product-card-grid {
    height: 320px;
  }

  .product-card-grid .product-name {
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 0.15rem;
  }

  .product-card-grid .product-brand {
    font-size: 0.55rem;
    margin-bottom: 0.5rem;
  }

  .product-card-grid .product-price {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
  }

  .product-card-grid .product-installments {
    font-size: 0.6rem;
    margin-bottom: 0.8rem;
  }

  .product-card-grid .btn-add-cart {
    padding: 0.4rem;
    font-size: 0.65rem;
  }

  .product-card-grid .product-info {
    transform: none;
    padding: 1rem 0.5rem;
  }

  .product-card-grid::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    height: 50%;
  }
}.pdp-container {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  padding-top: 100px;
}

.pdp-back-button-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 2rem;
}

.pdp-back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-metallic);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pdp-back-button:hover {
  color: #fff;
  transform: translateX(-5px);
}

/* SECTION 1: HERO DO PRODUTO */
.pdp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  align-items: start;
}

.pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pdp-main-image {
  width: 100%;
  aspect-ratio: 4/5;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}

.pdp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.pdp-thumb {
  aspect-ratio: 1/1;
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #050505;
}

.pdp-thumb.active {
  border-color: var(--gold-metallic);
}

.pdp-thumb:hover {
  border-color: var(--gold-metallic);
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

/* Variações visuais nas miniaturas e na foto principal */
.pdp-thumb.t1 img, .pdp-main-image.t1 img {
  transform: scale(1.8) translateY(-10%);
  filter: brightness(0.9) contrast(1.1);
}

.pdp-thumb.t2 img, .pdp-main-image.t2 img {
  transform: scale(2.2) translateX(15%) translateY(10%);
  filter: sepia(0.3) brightness(0.8);
}

.pdp-thumb.t3 img, .pdp-main-image.t3 img {
  transform: scale(1.5) translateY(20%);
  filter: saturate(1.2) brightness(0.85);
}

.pdp-thumb.t4 img, .pdp-main-image.t4 img {
  transform: scale(2.5) translateX(-10%) translateY(-15%);
  filter: contrast(1.3) grayscale(0.2);
}

.pdp-thumb.t5 img, .pdp-main-image.t5 img {
  transform: scale(1.3) translateY(5%);
  filter: sepia(0.5) contrast(1.1);
}

/* Informações do Produto */
.pdp-info {
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
}

.pdp-brand {
  color: var(--gold-metallic);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pdp-name {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.pdp-desc {
  font-size: 1rem;
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
  white-space: pre-wrap;
}

.pdp-price-wrap {
  margin-bottom: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 0;
}

.pdp-price {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans, sans-serif);
}

.pdp-installments {
  font-size: 0.9rem;
  color: #888;
}

.pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.btn-whatsapp {
  background: var(--gold-metallic);
  color: #000;
  border: none;
  padding: 1.2rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.btn-whatsapp:hover {
  background: #fff;
}

.btn-cart {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(var(--gold-rgb), 0.5);
  padding: 1.2rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-cart:hover {
  border-color: var(--gold-metallic);
  background: rgba(var(--gold-rgb), 0.05);
}


/* SECTION 2: BENEFÍCIOS */
.pdp-benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 4rem 2rem;
  border-top: 1px solid rgba(var(--gold-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.1);
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.benefit-item svg {
  color: var(--gold-metallic);
  width: 32px;
  height: 32px;
}

.benefit-item p {
  font-size: 0.8rem;
  color: #ccc;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.4;
}


/* SECTION 3: ESPECIFICAÇÕES (ACCORDION) */
.pdp-specs {
  max-width: 800px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
}

.accordion-header:hover {
  color: var(--gold-metallic);
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: var(--gold-metallic);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #999;
  line-height: 1.8;
  font-weight: 300;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-inner {
  padding-bottom: 2rem;
  white-space: pre-wrap;
}


/* SECTION 4: EXPERIÊNCIA VISUAL */
.pdp-visual {
  width: 100vw;
  height: 60vh;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  position: relative;
  margin-top: 6rem;
  margin-bottom: 6rem;
  background-color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pdp-visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(80%) contrast(120%);
}

.pdp-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8));
}

.pdp-visual-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.pdp-visual-quote {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.pdp-visual-author {
  color: var(--gold-metallic);
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}


/* SECTION 5: RELACIONADOS */
.pdp-related {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 8rem;
}

.related-title {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 4px;
  margin-bottom: 4rem;
  text-transform: uppercase;
  font-weight: 300;
}


/* RESPONSIVE */
@media (max-width: 1024px) {
  .pdp-hero {
    gap: 2rem;
  }
  .pdp-name {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .pdp-back-button {
    font-size: 0.75rem;
  }
  .pdp-back-button svg {
    width: 16px;
    height: 16px;
  }
  .pdp-hero {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }
  
  .pdp-info {
    padding-top: 0;
  }
  
  .pdp-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1rem;
  }
  
  .pdp-benefits .benefit-item:last-child {
    grid-column: 1 / -1;
  }
  
  .pdp-visual-quote {
    font-size: 1.8rem;
  }
  
  .pdp-visual {
    height: 50vh;
  }
}

@media (max-width: 480px) {
  .pdp-thumbnails {
    gap: 0.5rem;
  }
  
  .btn-whatsapp, .btn-cart {
    padding: 1rem;
    font-size: 0.85rem;
  }
  
  .pdp-price {
    font-size: 1.5rem;
  }
}
.auth-container {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-wrapper {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
  margin: 0 2rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

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

.auth-tab {
  flex: 1;
  background: transparent;
  color: #666;
  border: none;
  padding: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.auth-tab.active {
  color: var(--gold-metallic);
  background: rgba(var(--gold-rgb), 0.05);
  border-bottom: 2px solid var(--gold-metallic);
}

.auth-content {
  padding: 3rem;
}

.auth-title {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-align: center;
}

.auth-subtitle {
  color: #888;
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.auth-error {
  background: rgba(220, 53, 69, 0.1);
  color: #ff6b6b;
  padding: 1rem;
  border-left: 3px solid #ff6b6b;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group label {
  font-size: 0.75rem;
  color: #aaa;
  letter-spacing: 2px;
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
  color: #fff;
  border-radius: 4px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-metallic);
  background: rgba(var(--gold-rgb), 0.02);
}

.btn-auth-submit {
  background: var(--gold-metallic);
  color: #000;
  border: none;
  padding: 1.2rem;
  margin-top: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-auth-submit:hover:not(:disabled) {
  background: #fff;
}

.btn-auth-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .auth-content {
    padding: 2rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.info-page {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  padding-top: 100px;
}

.info-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

.info-back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-metallic, #c9a84c);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.info-back-button:hover {
  opacity: 0.7;
}

.info-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.info-title {
  font-size: 2rem;
  letter-spacing: 5px;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}

.info-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.info-separator .line {
  width: 60px;
  height: 1px;
  background: var(--gold-metallic, #c9a84c);
}

.info-separator .diamond {
  width: 6px;
  height: 6px;
  background: var(--gold-metallic, #c9a84c);
  transform: rotate(45deg);
}

.info-section {
  margin-bottom: 2.5rem;
}

.info-section h2 {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-metallic, #c9a84c);
  margin-bottom: 1rem;
  font-weight: 400;
}

.info-section p {
  color: #aaa;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.info-section ul {
  list-style: none;
  padding: 0;
}

.info-section ul li {
  color: #aaa;
  line-height: 1.8;
  font-size: 0.95rem;
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.info-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-metallic, #c9a84c);
}

.info-divider {
  width: 100%;
  height: 1px;
  background: rgba(201, 168, 76, 0.15);
  margin: 2.5rem 0;
}

/* Contato / FAQ específicos */
.info-contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.info-contact-card:hover {
  border-color: rgba(201,168,76,0.4);
}

.info-contact-card svg {
  color: var(--gold-metallic, #c9a84c);
  flex-shrink: 0;
}

.info-contact-card a {
  color: var(--gold-metallic, #c9a84c);
  text-decoration: none;
  font-size: 0.95rem;
}

.info-contact-card p {
  color: #aaa;
  font-size: 0.85rem;
  margin: 0.2rem 0 0;
}

.info-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
}

.info-faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.info-faq-question {
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.info-faq-answer {
  color: #888;
  line-height: 1.7;
  font-size: 0.9rem;
}

/* Rastrear pedido */
.rastrear-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.rastrear-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 1rem 1.2rem;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 1px;
  outline: none;
  transition: border-color 0.3s ease;
  text-align: center;
}

.rastrear-input::placeholder {
  color: #555;
  letter-spacing: 2px;
}

.rastrear-input:focus {
  border-color: rgba(201,168,76,0.7);
}

.rastrear-btn {
  background: var(--gold-metallic, #c9a84c);
  color: #000;
  border: none;
  padding: 1rem;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

.rastrear-btn:hover {
  opacity: 0.85;
}

.rastrear-whatsapp-hint {
  color: #555;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.rastrear-whatsapp-hint a {
  color: var(--gold-metallic, #c9a84c);
  text-decoration: none;
}

@media (max-width: 600px) {
  .info-title {
    font-size: 1.4rem;
    letter-spacing: 3px;
  }

  .info-container {
    padding: 2rem 1.2rem 5rem;
  }
}
.admin-access-page {
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.admin-access-card {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.admin-access-logo img {
  max-width: 160px;
  width: 100%;
  height: auto;
}

.admin-access-header {
  text-align: center;
}

.admin-access-header h1 {
  font-size: 1.1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.admin-access-header p {
  color: #555;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.admin-access-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-access-field input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  padding: 1rem 1.2rem;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 2px;
  outline: none;
  transition: border-color 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.admin-access-field input::placeholder {
  color: #444;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.admin-access-field input:focus {
  border-color: rgba(201, 168, 76, 0.6);
}

.admin-access-btn {
  width: 100%;
  background: var(--gold-metallic, #c9a84c);
  color: #000;
  border: none;
  padding: 1rem;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

.admin-access-btn:hover:not(:disabled) {
  opacity: 0.85;
}

.admin-access-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.admin-access-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.admin-access-back {
  background: transparent;
  border: none;
  color: #444;
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.admin-access-back:hover {
  color: #888;
}
.admin-login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #050505;
  padding: 2rem;
}

.admin-login-box {
  width: 100%;
  max-width: 400px;
  background: rgba(25, 25, 25, 0.4);
  padding: 3rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.admin-logo {
  font-size: 3rem;
  color: var(--gold-metallic);
  font-family: 'Cinzel', serif;
  margin-bottom: 1rem;
}

.admin-login-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.admin-error-message {
  background: rgba(255, 60, 60, 0.1);
  color: #ff5050;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 60, 60, 0.3);
  font-size: 0.9rem;
}

.admin-login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.admin-input-group label {
  display: block;
  color: #aaa;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.admin-input-group input {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #333;
  color: #fff;
  padding: 1rem;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.admin-input-group input:focus {
  outline: none;
  border-color: var(--gold-metallic);
  box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.2);
}

.admin-login-btn {
  background: var(--gold-metallic);
  color: #000;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.admin-login-btn:hover:not(:disabled) {
  background: #fff;
}

.admin-login-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.admin-back-btn {
  background: transparent;
  border: none;
  color: #888;
  margin-top: 2rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  text-decoration: underline;
}

.admin-back-btn:hover {
  color: #fff;
}
.admin-container {
  background-color: #050505;
  color: #fff;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
}

.admin-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  text-align: left;
}

.admin-title {
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-metallic);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.admin-subtitle {
  color: #888;
  font-size: 1rem;
}

.admin-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.loading-text {
  color: var(--gold-metallic);
  font-size: 1.2rem;
  text-align: center;
  padding: 4rem 0;
}

.empty-state {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 2rem;
  text-align: center;
  color: #888;
  border-radius: 8px;
}

.table-responsive {
  overflow-x: auto;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.leads-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.leads-table th {
  background: rgba(var(--gold-rgb), 0.05);
  color: var(--gold-metallic);
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.2);
  white-space: nowrap;
}

.leads-table td {
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  color: #ccc;
  vertical-align: middle;
}

.leads-table tr:last-child td {
  border-bottom: none;
}

.leads-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

.date-cell {
  color: #666 !important;
  font-size: 0.8rem !important;
  white-space: nowrap;
}

.name-cell {
  color: #fff !important;
  font-weight: 500;
}

.phone-cell a {
  color: var(--gold-metallic);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.phone-cell a:hover {
  opacity: 0.7;
}

.address-cell {
  max-width: 300px;
  line-height: 1.4;
}

.admin-count {
  color: var(--gold-metallic);
  font-weight: 500;
}

.action-cell {
  text-align: center;
  width: 60px;
}

.delete-btn {
  background: transparent;
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ff5050;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.delete-btn:hover:not(:disabled) {
  background: rgba(255, 80, 80, 0.12);
  border-color: #ff5050;
}

.delete-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .admin-header {
    text-align: center;
  }
  .leads-table th, .leads-table td {
    padding: 1rem;
  }
}
.admin-products-container {
  background-color: #050505;
  color: #fff;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
}

.admin-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-header-titles h1 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-metallic);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.admin-header-titles p {
  color: #888;
  font-size: 1rem;
}

.admin-add-btn {
  background: var(--gold-metallic);
  color: #000;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-add-btn:hover {
  background: #fff;
}

.admin-products-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.admin-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
}

.admin-tab {
  background: transparent;
  color: #888;
  border: none;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.admin-tab.active {
  color: var(--gold-metallic);
  border-bottom: 2px solid var(--gold-metallic);
}

.admin-tab:hover:not(.active) {
  color: #fff;
}

/* Modals / Forms */
.admin-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  padding: 2rem;
}

.admin-modal {
  background: #111;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  padding: 2rem;
}

.admin-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
}

.admin-modal-header h2 {
  color: var(--gold-metallic);
  font-weight: 300;
  letter-spacing: 2px;
}

.close-modal-btn {
  background: transparent;
  border: none;
  color: #888;
  font-size: 1.5rem;
  cursor: pointer;
}

.close-modal-btn:hover {
  color: #ff5050;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  overflow-y: auto;
  flex: 1;
  padding-right: 0.5rem;
}

.admin-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-form-group.full-width {
  grid-column: 1 / -1;
}

.admin-form-group label {
  color: #aaa;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-form-group input, 
.admin-form-group select,
.admin-form-group textarea {
  background: rgba(0,0,0,0.5);
  border: 1px solid #333;
  color: #fff;
  padding: 0.8rem;
  border-radius: 4px;
  font-family: inherit;
}

.admin-form-group input:focus, 
.admin-form-group select:focus,
.admin-form-group textarea:focus {
  outline: none;
  border-color: var(--gold-metallic);
}

.admin-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  margin-top: 1rem;
}

.admin-checkbox-group input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-metallic);
}

.admin-form-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.admin-cancel-btn {
  background: transparent;
  border: 1px solid #555;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
}

.admin-save-btn {
  background: var(--gold-metallic);
  color: #000;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

/* Image Upload Preview */
.image-upload-preview {
  margin-top: 1rem;
  width: 100%;
  max-width: 200px;
  aspect-ratio: 3/4;
  background: #000;
  border: 1px dashed #555;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-upload-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Table overrides for products */
.product-image-cell img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.status-badge {
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.status-active { background: rgba(0, 200, 80, 0.1); color: #00ff66; }
.status-inactive { background: rgba(255, 60, 60, 0.1); color: #ff3c3c; }
.status-promo { background: rgba(var(--gold-rgb), 0.1); color: var(--gold-metallic); }

.edit-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 34px; height: 34px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}

.edit-btn:hover { background: rgba(255,255,255,0.1); }

/* Tabelas Genéricas (Leads e Produtos) */
.leads-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.leads-table th {
  background: rgba(var(--gold-rgb), 0.05);
  color: var(--gold-metallic);
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.2);
  white-space: nowrap;
}

.leads-table td {
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  color: #ccc;
  vertical-align: middle;
}

.leads-table tr:last-child td {
  border-bottom: none;
}

.leads-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

.date-cell {
  color: #666 !important;
  font-size: 0.8rem !important;
  white-space: nowrap;
}

.name-cell {
  color: #fff !important;
  font-weight: 500;
}

.phone-cell a {
  color: var(--gold-metallic);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.phone-cell a:hover {
  opacity: 0.7;
}

.address-cell {
  max-width: 300px;
  line-height: 1.4;
}

.action-cell {
  text-align: center;
}

.delete-btn {
  background: transparent;
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ff5050;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.delete-btn:hover:not(:disabled) {
  background: rgba(255, 80, 80, 0.12);
  border-color: #ff5050;
}

.delete-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Classes Responsivas do Formulário de Produtos */
.admin-checkboxes-row {
  display: flex;
  gap: 2rem;
  flex-direction: row;
}

.admin-form-row-responsive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Força z-index do modal para ficar acima de menus e barras */
.admin-modal-overlay {
  z-index: 10000 !important;
}

/* Responsividade Geral do Modal em Telas Menores */
@media (max-width: 768px) {
  .admin-modal {
    padding: 1.5rem 1.2rem;
    max-height: 95vh;
    width: 95%;
  }

  .admin-form-grid {
    grid-template-columns: 1fr; /* Transforma as 2 colunas em 1 coluna no mobile */
    gap: 1.2rem;
    padding-right: 0;
  }

  .admin-checkboxes-row {
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
  }

  .admin-form-row-responsive {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .admin-form-actions {
    flex-direction: column-reverse; /* Empilha os botões verticalmente e coloca o principal no topo */
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .admin-cancel-btn,
  .admin-save-btn {
    width: 100%; /* Botões com largura cheia no celular */
    text-align: center;
    padding: 1rem;
  }
}
.admin-layout {
  display: flex;
  min-height: 100vh;
  background-color: var(--black-bg);
  color: var(--light-gray);
  font-family: var(--font-sans);
}

.admin-sidebar {
  width: 250px;
  background-color: #050505;
  border-right: 1px solid rgba(197, 168, 128, 0.2);
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
}

.admin-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-primary);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.admin-nav-item {
  padding: 1rem;
  color: var(--light-gray);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-nav-item:hover {
  background-color: rgba(197, 168, 128, 0.1);
  color: var(--gold-primary);
}

.admin-nav-item.active {
  background-color: rgba(197, 168, 128, 0.15);
  color: var(--gold-light);
  border-left: 3px solid var(--gold-primary);
}

.admin-nav-icon {
  width: 18px;
  height: 18px;
}

.admin-logout-floating {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: transparent;
  border: none;
  color: #555;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.admin-logout-floating:hover {
  color: var(--gold-metallic, #c5a880);
  transform: scale(1.1);
}

.admin-main {
  flex: 1;
  padding: 2rem 3rem;
  overflow-y: auto;
  background-color: var(--black-bg);
  position: relative;
}

/* Responsividade Básica */
@media (max-width: 768px) {
  .admin-layout {
    flex-direction: column;
  }
  
  .admin-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    padding: 1rem;
  }
  
  .admin-logo {
    margin-bottom: 1rem;
  }
  
  .admin-nav {
    flex-direction: row;
    overflow-x: auto;
  }
  
  .admin-nav-item {
    white-space: nowrap;
  }
  
  .admin-main {
    padding: 1rem;
  }
}
