/* =============================================
   Skina Cell — Estilo Principal
   ============================================= */

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

:root {
  --black: #080808;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --gold: #c99422;
  --gold-light: #e8bd55;
  --gold-dark: #a87a18;
  --cream: #f8f5ee;
  --cream-2: #f8f6f0;
  --cream-3: #f1e8d8;
  --white: #ffffff;
  --text: #222222;
  --text-soft: #444444;
  --muted: #666666;
  --border: rgba(0, 0, 0, 0.10);
  --border-dark: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 35px 80px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 15px 35px rgba(201, 148, 34, 0.24);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --neon-green: #39FF14;
}

/* ============================================= */
/* DARK THEME OVERRIDES (Obsidian & Gold) */
/* ============================================= */
body.dark-theme {
  --cream: #080808;      /* Primary bg */
  --cream-2: #111111;    /* Secondary bg */
  --cream-3: #161616;    /* Extra dark areas */
  --white: #1a1a1a;      /* Cards bg */
  --text: #f8f5ee;       /* Light text */
  --text-soft: #cccccc;  /* Muted light text */
  --border: rgba(232, 189, 85, 0.18);
  --border-dark: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 35px 80px rgba(0, 0, 0, 0.6);
}

/* Hero background adjustment in Dark Mode */
body.dark-theme .hero {
  background:
    radial-gradient(circle at 76% 25%, rgba(201, 148, 34, 0.15), transparent 28%),
    radial-gradient(circle at 12% 80%, rgba(232, 189, 85, 0.08), transparent 30%),
    linear-gradient(90deg, #0a0a0a 0%, #111111 52%, #050505 100%) !important;
}

/* Card gradients overrides */
body.dark-theme .category-card {
  background: linear-gradient(180deg, var(--white), var(--cream-2)) !important;
}
body.dark-theme .category-card::before {
  background: linear-gradient(135deg, rgba(232, 189, 85, 0), rgba(232, 189, 85, 0.1)) !important;
}
body.dark-theme .location-card,
body.dark-theme .about-card {
  background: var(--white) !important;
}

body.dark-theme .locations-box {
  background: linear-gradient(180deg, var(--white), var(--cream-2)) !important;
  border-color: var(--border) !important;
}

body.dark-theme .locations-box h2 {
  color: var(--text) !important;
}

/* Button overrides in Dark Mode */
body.dark-theme .btn-outline {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
}
body.dark-theme .btn-outline:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

body.dark-theme .btn-about {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
}
body.dark-theme .btn-about:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* Modal spec adjustments */
body.dark-theme .modal-dialog {
  background: var(--white) !important;
  border-color: var(--border) !important;
}
body.dark-theme .modal-close {
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--text) !important;
}
body.dark-theme .modal-product-specs {
  background: var(--cream-2) !important;
  border-color: var(--border) !important;
}
body.dark-theme .modal-qty-container {
  border-top-color: var(--border) !important;
}
body.dark-theme .qty-selector {
  background: var(--cream-2) !important;
  border-color: var(--border) !important;
}
body.dark-theme .qty-btn {
  color: var(--text) !important;
}
body.dark-theme .qty-btn:hover {
  background: rgba(255, 255, 255, 0.05) !important;
}
body.dark-theme .qty-value {
  color: var(--text) !important;
}

/* WhatsApp chat adjustments */
body.dark-theme .wa-chat-window {
  background: var(--white) !important;
  border-color: var(--border) !important;
}
body.dark-theme .wa-chat-options {
  background: var(--cream-2) !important;
  border-top-color: var(--border) !important;
}
body.dark-theme .wa-option-btn {
  background: var(--white) !important;
  color: var(--text) !important;
  border-color: var(--border) !important;
}
body.dark-theme .wa-option-btn:hover {
  background: rgba(232, 189, 85, 0.08) !important;
  color: var(--gold-light) !important;
  border-color: var(--gold) !important;
}
body.dark-theme .wa-message-received {
  background: var(--cream-3) !important;
}
body.dark-theme .wa-message-received p {
  color: var(--text) !important;
}

/* theme toggle button styling */
.theme-toggle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
  z-index: 999;
  position: relative;
}

.theme-toggle:hover {
  background: rgba(232, 189, 85, 0.12);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: rotate(15deg);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  position: absolute;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle .sun-icon {
  opacity: 0;
  transform: scale(0.6) rotate(-90deg);
}

.theme-toggle .moon-icon {
  opacity: 1;
  transform: scale(1) rotate(0);
}

body.dark-theme .theme-toggle .sun-icon {
  opacity: 1;
  transform: scale(1) rotate(0);
}

body.dark-theme .theme-toggle .moon-icon {
  opacity: 0;
  transform: scale(0.6) rotate(90deg);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

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

iframe,
video {
  max-width: 100%;
  display: block;
}

/* Garantir que tabelas, pre e code não estourem em mobile */
table {
  max-width: 100%;
  table-layout: auto;
}

pre, code {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream-2);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

.container {
  width: min(1240px, 92%);
  margin: 0 auto;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger nas categorias */
.category-grid .reveal:nth-child(1) { transition-delay: 0s; }
.category-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.category-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.category-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.category-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.category-grid .reveal:nth-child(6) { transition-delay: 0.40s; }

/* ============================================= */
/* PROMO TICKER */
/* ============================================= */

.promo-ticker {
  background: 
    radial-gradient(circle at 0% 0%, var(--primary-rgba-18), transparent 45%),
    radial-gradient(circle at 100% 100%, var(--primary-rgba-14), transparent 45%),
    linear-gradient(180deg, var(--header-bg-alt), var(--header-bg) 60%, var(--header-bg));
  border-bottom: 1.5px solid rgba(201, 148, 34, 0.3);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 8px 0;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1001;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ticker-content {
  display: inline-flex;
  gap: 50px;
  animation: ticker 32s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.promo-ticker span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================= */
/* HEADER & NAV */
/* ============================================= */

.header {
  position: sticky;
  top: 18px;
  z-index: 999;
  width: 100%;
  padding: 0;
  margin-top: 18px;
  color: #fff;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
  top: 10px;
}

.nav {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1140px, 92%);
  margin: 0 auto;
  padding: 10px 28px 10px 38px;
  background:
    radial-gradient(circle at 0% 0%, var(--primary-rgba-18), transparent 45%),
    radial-gradient(circle at 100% 100%, var(--primary-rgba-14), transparent 45%),
    linear-gradient(180deg, var(--header-bg-alt), var(--header-bg) 60%, var(--header-bg));
  border-radius: 999px;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.22),
    0 0 35px var(--primary-rgba-06);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav .logo {
  justify-self: start;
}

.nav .menu {
  justify-self: center;
}

/* Borda gradiente dourada com animação de luz */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    var(--primary-rgba-55) 0%,
    var(--primary-rgba-18) 30%,
    rgba(255, 255, 255, 0.04) 50%,
    var(--primary-rgba-18) 70%,
    var(--primary-rgba-55) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.35s ease;
}

/* Glow externo sutil */
.nav::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-rgba-25), transparent 50%);
  filter: blur(20px);
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.header.scrolled .nav {
  padding: 8px 24px 8px 34px;
  background:
    radial-gradient(circle at 0% 0%, var(--primary-rgba-14), transparent 45%),
    radial-gradient(circle at 100% 100%, var(--primary-rgba-10), transparent 45%),
    linear-gradient(180deg, var(--header-bg-alt), var(--header-bg));
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.36),
    0 0 35px var(--primary-rgba-10);
}

.header.scrolled .nav::after {
  opacity: 0.8;
}

/* ============================================= */
/* LOGO */
/* ============================================= */

.logo,
.footer-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover,
.footer-logo:hover {
  transform: translateY(-2px) scale(1.02);
}

.logo-img {
  height: 46px;
  width: auto;
  display: block;
}

.footer-logo .logo-img {
  height: 52px;
}

.logo strong,
.footer-logo strong {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 7px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 5s linear infinite;
}

@keyframes shineText {
  to {
    background-position: 200% center;
  }
}

.logo span,
.footer-logo span {
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 6px;
  font-weight: 800;
  margin-top: 5px;
}

.logo small,
.footer-logo small {
  color: #fff;
  font-size: 9px;
  letter-spacing: 4px;
  margin-top: 5px;
  opacity: 0.8;
}

/* ============================================= */
/* MENU DESKTOP & SLIDING PILL */
/* ============================================= */

.mobile-menu-toggle,
.mobile-menu-label {
  display: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}

.menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 14px;
  border-radius: 999px;
  transition: color 0.3s ease;
  z-index: 2;
}

.menu a:hover,
.menu a.active {
  color: var(--gold-light);
}

/* Pílula Deslizante */
.menu-backdrop {
  position: absolute;
  background: rgba(232, 189, 85, 0.08);
  border: 1px solid rgba(232, 189, 85, 0.2);
  border-radius: 999px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: scale(0.9);
  height: 32px;
}

.menu-backdrop.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================= */
/* CATEGORIES DROPDOWN MENU */
/* ============================================= */

.menu-item-dropdown {
  position: relative;
  display: inline-block;
  z-index: 10;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(10, 10, 10, 0.96);
  border: 1.5px solid rgba(201, 148, 34, 0.35);
  border-radius: 12px;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(201, 148, 34, 0.08);
  padding: 8px 0;
  min-width: 190px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.menu-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-menu a {
  display: block !important;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  padding: 10px 20px !important;
  border-radius: 0 !important;
  text-align: left !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  position: relative !important;
  background: transparent !important;
  border: none !important;
}

.dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--gold);
  transition: transform 0.25s ease;
}

.dropdown-menu a:hover {
  background: rgba(201, 148, 34, 0.08) !important;
  color: var(--gold-light) !important;
  padding-left: 24px !important;
}

.dropdown-menu a:hover::before {
  transform: translateY(-50%) scale(1);
}

/* Ajustes Responsivos do Dropdown */
@media (max-width: 1120px) {
  .menu-item-dropdown {
    width: 100%;
    text-align: center;
  }
  
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    margin: 8px auto 0 !important;
    padding: 4px 0 !important;
    min-width: 100% !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .menu-item-dropdown.open .dropdown-menu {
    max-height: 350px;
  }

  .dropdown-menu a {
    text-align: center !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  }
  
  .dropdown-menu a:last-child {
    border-bottom: none !important;
  }
  
  .dropdown-menu a:hover {
    padding-left: 0 !important;
    background: rgba(201, 148, 34, 0.04) !important;
  }

  .dropdown-menu a::before {
    display: none;
  }
}


/* ============================================= */
/* BUTTONS */
/* ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.4px;
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-family: inherit;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-whats {
  color: #e7c466;
  border-color: rgba(201, 148, 34, 0.7);
  background: rgba(201, 148, 34, 0.05);
}

.btn-whats:hover {
  background: rgba(201, 148, 34, 0.15);
  color: var(--gold-light);
  box-shadow: 0 10px 25px rgba(201, 148, 34, 0.20);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  box-shadow: var(--shadow-gold);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s ease;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  box-shadow: 0 20px 45px rgba(201, 148, 34, 0.40);
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.btn-dark {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.20);
}

.btn-dark:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 14px 30px rgba(201, 148, 34, 0.30);
}

.btn-black {
  background: #070707;
  color: #fff;
  min-width: 260px;
  border: 1px solid #070707;
}

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

.btn-about {
  border: 1px solid rgba(0, 0, 0, 0.22);
  color: #222;
  background: #fff;
}

.btn-about:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* ============================================= */
/* ICONS — SVG containers */
/* ============================================= */

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 148, 34, 0.10);
  border: 1px solid rgba(201, 148, 34, 0.32);
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

.icon-box.sm {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.icon-box.sm svg {
  width: 18px;
  height: 18px;
}

/* ============================================= */
/* HERO */
/* ============================================= */

.hero {
  background:
    radial-gradient(circle at 76% 25%, rgba(201, 148, 34, 0.30), transparent 28%),
    radial-gradient(circle at 12% 80%, rgba(232, 189, 85, 0.18), transparent 30%),
    linear-gradient(90deg, #fbfaf6 0%, #f8f5ec 52%, #f1e8d8 100%);
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.hero-text {
  position: relative;
  z-index: 4;
}

.tagline {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 8px;
  display: inline-block;
  margin-bottom: 22px;
  position: relative;
  padding-left: 56px;
}

.tagline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
  transform: translateY(-50%);
}

.hero h1 {
  font-size: clamp(36px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -1.5px;
  font-weight: 900;
  color: var(--text-soft);
  margin-bottom: 12px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h2 {
  font-size: 30px;
  letter-spacing: 5px;
  color: var(--gold-dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-text p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
  color: var(--text-soft);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats .stat {
  position: relative;
  padding-left: 16px;
}

.hero-stats .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), transparent);
  border-radius: 2px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-size: 30px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 6px;
}

.benefits-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 760px;
}

.benefits-mini > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefits-mini .text {
  display: flex;
  flex-direction: column;
}

.benefits-mini strong {
  font-size: 13px;
  color: #222;
}

.benefits-mini span {
  font-size: 12px;
  color: #555;
}

/* Hero visual */
.hero-visual {
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-bg {
  position: absolute;
  width: 680px;
  height: 680px;
  border: 7px solid rgba(201, 148, 34, 0.40);
  border-radius: 50%;
  right: -80px;
  top: -150px;
  z-index: 1;
  animation: rotateSlow 60s linear infinite;
}

.circle-bg::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 2px dashed rgba(201, 148, 34, 0.22);
  border-radius: 50%;
}

@keyframes rotateSlow {
  to {
    transform: rotate(360deg);
  }
}

/* Phone mockup */
.phone-mockup {
  position: relative;
  z-index: 3;
  width: 286px;
  height: 560px;
  background: linear-gradient(145deg, #1a1a1a, #050505);
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1.5px rgba(232, 189, 85, 0.20);
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 28%, rgba(232, 189, 85, 0.22), transparent 50%),
    linear-gradient(180deg, #161616, #0a0a0a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 26px 30px;
  position: relative;
  overflow: hidden;
}

.phone-screen::before {
  content: 'S';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 240px;
  color: rgba(201, 148, 34, 0.06);
  font-weight: 900;
  line-height: 1;
}

.phone-bolt {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 14px 30px rgba(201, 148, 34, 0.45);
  animation: pulseBolt 2.6s infinite;
}

@keyframes pulseBolt {
  0%, 100% {
    box-shadow: 0 14px 30px rgba(201, 148, 34, 0.45);
  }
  50% {
    box-shadow: 0 14px 40px rgba(201, 148, 34, 0.70), 0 0 0 14px rgba(201, 148, 34, 0);
  }
}

.phone-bolt svg {
  width: 30px;
  height: 30px;
}

.phone-screen-logo {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 5px;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.phone-screen-tag {
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.phone-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.phone-mini-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 189, 85, 0.20);
  padding: 12px 8px;
  border-radius: 10px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.80);
  letter-spacing: 1.5px;
  font-weight: 700;
  text-align: center;
}

.phone-mini-card svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
  margin: 0 auto 6px;
  display: block;
}

/* Premium badge */
.premium-badge {
  position: absolute;
  right: -5px;
  top: 60px;
  z-index: 5;
  width: 128px;
  height: 156px;
  background: linear-gradient(180deg, #1a1a1a, #050505);
  border: 2px solid var(--gold);
  border-radius: 6px;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.30);
  animation: badgeFloat 5s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

.premium-badge strong {
  font-size: 52px;
  line-height: 0.8;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-badge small {
  font-size: 11px;
  margin-top: 14px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
}

.premium-badge span {
  color: #fff;
  font-size: 16px;
  letter-spacing: 3px;
  margin-top: 2px;
}

/* Floating cards */
.floating-product {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 6;
  font-size: 12px;
  font-weight: 700;
  color: #222;
  animation: floatCard 4.5s ease-in-out infinite;
}

.floating-product svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.floating-product.one {
  left: -10px;
  top: 90px;
}

.floating-product.two {
  right: 20px;
  bottom: 120px;
  animation-delay: 1s;
}

.floating-product.three {
  left: 30px;
  bottom: 40px;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ============================================= */
/* SEÇÃO DE PRODUTOS DESTAQUES & FILTROS */
/* ============================================= */

.featured-products {
  background: var(--cream);
  padding: 88px 0;
}

.shop-hero {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.88), rgba(17, 17, 17, 0.74)),
    radial-gradient(circle at 78% 24%, var(--primary-rgba-18), transparent 34%),
    var(--black);
  padding: 132px 0 42px;
  border-bottom: 1px solid var(--border);
}

.shop-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.shop-hero-copy {
  max-width: 720px;
}

.shop-hero-copy h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
  margin: 10px 0 14px;
  font-weight: 900;
}

.shop-hero-copy p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 650px;
  line-height: 1.7;
  font-size: 15px;
}

.shop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.featured-products-shop {
  padding-top: 54px;
  background: linear-gradient(180deg, var(--cream), #fff);
}

.featured-products-shop .product-explorer {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.product-explorer {
  margin-bottom: 36px;
}

.product-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.filter-tab {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.filter-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.product-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: stretch;
  max-width: 860px;
  margin: 0 auto;
}

.product-sort-control {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 8px 6px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-sort-control select {
  border: none;
  outline: none;
  background: rgba(201, 148, 34, 0.08);
  color: #111;
  border-radius: 999px;
  padding: 11px 36px 11px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.product-results-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 28px;
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 12.5px;
  font-weight: 700;
}

.product-reset-filters {
  display: none;
  border: none;
  background: transparent;
  color: var(--gold-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  padding: 4px 0;
}

.product-reset-filters.visible {
  display: inline-flex;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  transition: opacity 0.35s ease;
}

.product-item-col {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-item-col.hide-product {
  display: none !important;
}

.product-item-col.fade-in-product {
  animation: cardFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.product-card {
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: 50px 20px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
  transition: all var(--transition);
  overflow: hidden;
  cursor: pointer;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 148, 34, 0), rgba(201, 148, 34, 0.04));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 148, 34, 0.35);
  box-shadow: var(--shadow);
}

.product-card:hover::before {
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(201, 148, 34, 0.08);
  border: 1px solid rgba(201, 148, 34, 0.25);
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-stock {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.product-stock-available {
  color: #1f8a4d;
  background: rgba(31, 138, 77, 0.08);
  border-color: rgba(31, 138, 77, 0.22);
}

.product-stock-low {
  color: #9d6515;
  background: rgba(201, 148, 34, 0.10);
  border-color: rgba(201, 148, 34, 0.28);
}

.product-stock-consult {
  color: #6d6d6d;
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

.product-icon {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201, 148, 34, 0.08), rgba(232, 189, 85, 0.02));
  border: 1px solid rgba(201, 148, 34, 0.15);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.45s ease;
  position: relative;
  z-index: 2;
}

.product-icon svg {
  width: 32px;
  height: 32px;
}

.product-card:hover .product-icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 10px 20px rgba(201, 148, 34, 0.25);
}

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 2;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 900;
  color: #111;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}

.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.product-meta-row span {
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 850;
  padding: 5px 9px;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.product-price {
  font-size: 18px;
  font-weight: 900;
  color: #111;
}

.product-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.price-label {
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-actions {
  display: grid;
  grid-template-columns: minmax(92px, 1fr) 38px;
  gap: 8px;
  align-items: center;
}

.product-footer .btn {
  min-height: 38px;
  padding: 0 14px;
  font-size: 10px;
  letter-spacing: 0.5px;
  border-radius: 6px;
}

.btn-card-whatsapp {
  width: 38px;
  min-width: 38px;
  padding: 0 !important;
  color: var(--whatsapp);
  border-color: rgba(37, 211, 102, 0.36);
  background: rgba(37, 211, 102, 0.08);
}

.btn-card-whatsapp:hover {
  color: #fff;
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.24);
}

.product-empty-state {
  margin: 26px auto 0;
  max-width: 460px;
  text-align: center;
  border: 1px dashed rgba(201, 148, 34, 0.35);
  border-radius: 16px;
  padding: 24px 20px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.55);
}

.product-empty-state strong,
.product-empty-state span {
  display: block;
}

.product-empty-state strong {
  color: #111;
  font-size: 15px;
  margin-bottom: 6px;
}

/* ============================================= */
/* CATEGORIES */
/* ============================================= */

.categories {
  background: var(--cream-2);
  padding: 88px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 48px;
  text-align: center;
}

.section-title h2 {
  color: #111;
  font-size: 26px;
  letter-spacing: 3px;
  font-weight: 900;
}

.section-title span {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  perspective: 1200px;
}

.location-grid {
  perspective: 1200px;
}

.category-card {
  min-height: 230px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f4f1ea);
  text-align: center;
  padding: 32px 18px 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  color: inherit;
  cursor: pointer;
  display: block;
  font-family: inherit;
  text-decoration: none;
  width: 100%;
}

button.category-card {
  appearance: none;
  border-color: var(--border);
}

.category-card:focus-visible,
.product-card:focus-visible {
  outline: 3px solid rgba(201, 148, 34, 0.35);
  outline-offset: 4px;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 148, 34, 0), rgba(201, 148, 34, 0.06));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 148, 34, 0.40);
  box-shadow: var(--shadow);
}

.category-card:hover::before {
  opacity: 1;
}

.category-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(201, 148, 34, 0.12), rgba(232, 189, 85, 0.04));
  border: 1px solid rgba(201, 148, 34, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  transition: all 0.45s ease;
  position: relative;
  z-index: 2;
}

.category-card:hover .category-icon {
  transform: scale(1.10) rotate(-6deg);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 12px 25px rgba(201, 148, 34, 0.35);
}

.category-icon svg {
  width: 40px;
  height: 40px;
}

.category-card h3 {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.category-card p {
  color: #222;
  line-height: 1.55;
  font-size: 13px;
  position: relative;
  z-index: 2;
}

/* ============================================= */
/* EXPOSITORES */
/* ============================================= */

.partner-section {
  background: var(--cream-2);
  padding: 25px 0 88px;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.expositor-box {
  min-height: 540px;
  background:
    radial-gradient(circle at 70% 60%, rgba(201, 148, 34, 0.24), transparent 35%),
    linear-gradient(135deg, #080808, #1a1a1a);
  color: #fff;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 20px;
  padding: 52px 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.expositor-box::before {
  content: 'SKINA';
  position: absolute;
  right: -30px;
  bottom: -40px;
  font-size: 180px;
  color: rgba(255, 255, 255, 0.025);
  font-weight: 900;
  letter-spacing: 10px;
  line-height: 1;
  transform: rotate(-12deg);
}

.expositor-text {
  position: relative;
  z-index: 2;
}

.expositor-text h2,
.locations-box h2 {
  color: var(--gold-light);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.2;
}

.line {
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 18px 0 25px;
  border-radius: 2px;
}

.expositor-text p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 15px;
}

.stand-area {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Expositor mockup */
.expositor-display {
  width: 100%;
  max-width: 320px;
  height: 400px;
  background: linear-gradient(180deg, #1f1f1f, #0c0c0c);
  border: 2px solid rgba(201, 148, 34, 0.5);
  border-radius: 14px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  animation: standFloat 7s ease-in-out infinite;
}

@keyframes standFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.expositor-display::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -14px;
  height: 14px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55), transparent 70%);
  filter: blur(4px);
}

.expositor-top-banner {
  text-align: center;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 3px;
  box-shadow: 0 8px 18px rgba(201, 148, 34, 0.25);
}

.expositor-top-banner small {
  display: block;
  font-size: 8px;
  letter-spacing: 4px;
  margin-top: 4px;
  font-weight: 700;
  opacity: 0.85;
}

.expositor-shelves {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}

.shelf-item {
  background: linear-gradient(180deg, rgba(232, 189, 85, 0.10), rgba(232, 189, 85, 0.02));
  border: 1px solid rgba(232, 189, 85, 0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: 0.3s ease;
}

.shelf-item:hover {
  background: linear-gradient(180deg, rgba(232, 189, 85, 0.25), rgba(232, 189, 85, 0.05));
  transform: translateY(-3px);
  border-color: var(--gold-light);
}

.shelf-item svg {
  width: 24px;
  height: 24px;
}

.expositor-bottom {
  background: rgba(232, 189, 85, 0.08);
  border: 1px solid rgba(232, 189, 85, 0.22);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.70);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
}

/* ============================================= */
/* GEOLOCALIZAÇÃO */
/* ============================================= */

.geolocation-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.geolocation-status {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.3s ease;
}

.distance-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  position: absolute;
  top: 14px;
  right: 14px;
  box-shadow: 0 4px 10px rgba(201, 148, 34, 0.2);
  z-index: 2;
  animation: badgePop 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes badgePop {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.location-card {
  position: relative;
}

/* ============================================= */
/* ONDE ENCONTRAR */
/* ============================================= */

.locations-box {
  min-height: auto;
  padding: 52px 40px;
  background: linear-gradient(180deg, #fff, #f7f4ec);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.store-layout-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
  margin-top: 24px;
}

.store-map-side {
  width: 100%;
}

.store-info-side {
  width: 100%;
}

.main-store-card {
  text-align: left;
}

.main-store-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.main-store-header h3 {
  font-size: 20px;
  color: var(--text);
  font-weight: 800;
  margin-top: 8px;
}

/* Responsividade do mapa */
@media (max-width: 820px) {
  .store-layout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  #map-leaflet {
    height: 240px !important;
  }
}

.locations-box h2 {
  color: #111;
}

.locations-box p {
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 28px;
  font-size: 15px;
}

.locations-section {
  padding: 100px 0;
  background: #070707;
}

/* ============================================= */
/* SEÇÃO DE CONTATO (CONTACT SECTION) */
/* ============================================= */
.contact-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #111 100%);
}

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

.contact-section .section-header h2 {
  font-size: 32px;
  font-weight: 850;
  letter-spacing: 0.5px;
  color: #fff;
}

.contact-section .section-header h2 span {
  color: var(--gold-light);
}

.contact-section .section-header p {
  color: #a6a6a6;
  font-size: 14.5px;
  max-width: 600px;
  margin: 15px auto 0;
  line-height: 1.6;
}

.contact-card-wrapper {
  max-width: 600px;
  margin: 40px auto 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 148, 34, 0.15);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s ease;
}

.contact-card-wrapper:hover {
  border-color: rgba(201, 148, 34, 0.3) !important;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  color: #ffffff;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form .form-control {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 13.5px;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 10px rgba(201, 148, 34, 0.15) !important;
}

.contact-form textarea.form-control {
  resize: vertical;
}

.contact-form .btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 750;
  padding: 14px 20px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

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

@media (max-width: 580px) {
  .form-group-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-bottom: 28px;
}

.location-card {
  min-height: 185px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 13px;
  background: #fff;
  text-align: center;
  padding: 26px 14px 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
  cursor: pointer;
}

.location-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 148, 34, 0.4);
  box-shadow: var(--shadow);
}

.location-card .icon-box {
  margin: 0 auto 14px;
}

.location-card:hover .icon-box {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: scale(1.05);
}

.location-card h3 {
  font-size: 14px;
  color: #222;
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.location-card p {
  color: #777;
  font-size: 12px;
  margin-bottom: 10px;
}

.location-card a {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: 0.3s;
}

.location-card a:hover {
  color: var(--gold-dark);
  gap: 8px;
}

.location-card a svg {
  width: 12px;
  height: 12px;
}

/* Foto da Loja no Card */
.store-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 2px solid rgba(201, 148, 34, 0.3);
  transition: all var(--transition);
}

.store-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.location-card:hover .store-photo {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 148, 34, 0.15);
}

.location-card:hover .store-photo img {
  transform: scale(1.1);
}

.store-address {
  color: #999 !important;
  font-size: 10px !important;
  margin-bottom: 2px;
  line-height: 1.4;
}

/* ============================================= */
/* BENEFÍCIOS */
/* ============================================= */

.benefits-strip {
  background: var(--cream-2);
  padding: 40px 0;
}

.benefits-grid {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.benefits-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid rgba(201, 148, 34, 0.30);
  text-align: left;
  transition: 0.3s ease;
}

.benefit:last-child {
  border-right: none;
}

.benefit:hover .icon-box {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}

.benefit strong {
  font-size: 13px;
  line-height: 1.45;
  color: #222;
}

/* ============================================= */
/* SEÇÃO DE DEPOIMENTOS */
/* ============================================= */

.testimonials {
  background: var(--cream);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

body.dark-theme .testimonials {
  background: var(--cream) !important;
}

.testimonials-carousel-wrapper {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.testimonials-carousel {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px) scale(0.98);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 42px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  width: 100%;
}

body.dark-theme .testimonial-card {
  background: var(--white) !important;
  border-color: var(--border) !important;
}

.testimonial-stars {
  color: var(--gold-light);
  font-size: 20px;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 24px;
}

.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 148, 34, 0.12);
  border: 1px solid rgba(201, 148, 34, 0.3);
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

.author-info span {
  display: block;
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 2px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.carousel-btn {
  background: var(--white);
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

body.dark-theme .carousel-btn {
  background: var(--white) !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
}

.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(201, 148, 34, 0.15);
}

.carousel-indicators {
  display: flex;
  gap: 8px;
}

.carousel-indicators .indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 148, 34, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
  width: 24px;
  border-radius: 4px;
  background: var(--gold);
}

/* ============================================= */
/* CTA "DEIXAR DEPOIMENTO" + MODAL DE DEPOIMENTO */
/* ============================================= */

.testimonial-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px dashed rgba(201, 148, 34, 0.2);
}

.testimonial-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
}

.testimonial-cta .btn svg {
  width: 18px;
  height: 18px;
}

.testimonial-cta-hint {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 13px;
}

.testimonial-form .form-row {
  margin-bottom: 10px;
}

.testimonial-form label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.testimonial-form input[type="text"],
.testimonial-form textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13.5px;
  font-family: inherit;
  background: var(--cream-1);
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
  box-sizing: border-box;
}

.testimonial-form input[type="text"]:focus,
.testimonial-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 148, 34, 0.12);
}

.testimonial-form textarea {
  resize: vertical;
  min-height: 70px;
}

/* Star rating customizado (radio buttons em ordem reversa para hover lateral) */
.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 2px;
}

.star-rating input[type="radio"] {
  display: none;
}

.star-rating label {
  font-size: 26px;
  color: rgba(201, 148, 34, 0.25);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
  text-transform: none;
  font-weight: normal;
  line-height: 1;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type="radio"]:checked ~ label {
  color: var(--gold);
  transform: scale(1.05);
}

#testimonialFeedback .alert-success {
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: #1f8a4d;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  text-align: center;
  font-weight: 600;
}

#testimonialFeedback .alert-error {
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.25);
  color: #c0392b;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  text-align: center;
  font-weight: 600;
  margin-top: 12px;
}

/* ============================================= */
/* TOAST DE NOTIFICAÇÃO (PADRÃO DO SITE) */
/* ============================================= */

.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: #fff;
  color: #1a1a1a;
  padding: 14px 18px 14px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
  min-width: 280px;
  max-width: 380px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
  pointer-events: auto;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 4px solid var(--gold);
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast.toast-success {
  border-left-color: #1f8a4d;
}

.toast.toast-error {
  border-left-color: #c0392b;
}

.toast-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  margin-top: 1px;
}

.toast.toast-success .toast-icon {
  background: rgba(31, 138, 77, 0.12);
  color: #1f8a4d;
}

.toast.toast-error .toast-icon {
  background: rgba(192, 57, 43, 0.12);
  color: #c0392b;
}

.toast-message {
  flex: 1;
  line-height: 1.4;
  color: #333;
}

.toast-message strong {
  display: block;
  color: #1a1a1a;
  font-size: 14px;
  margin-bottom: 2px;
}

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  margin: -2px -4px 0 0;
  transition: color 0.2s;
}

.toast-close:hover {
  color: #333;
}

@media (max-width: 480px) {
  .toast-container {
    top: 12px;
    right: 12px;
    left: 12px;
  }
  .toast {
    min-width: 0;
    max-width: none;
  }
}

/* ============================================= */
/* FAQ ACCORDION */
/* ============================================= */

.faq-section {
  background: var(--cream-2);
  padding: 88px 0;
}

.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  border-color: rgba(201, 148, 34, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
  border-color: rgba(201, 148, 34, 0.45);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  color: #111;
  transition: color 0.3s ease;
  user-select: none;
}

.faq-item.active .faq-question {
  color: var(--gold-dark);
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(201, 148, 34, 0.08);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-toggle-icon {
  background: var(--gold);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
  padding: 0 28px 22px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

/* ============================================= */
/* SOBRE / CTA */
/* ============================================= */

.about-section {
  background: var(--cream-2);
  padding: 30px 0 88px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
}

.about-card,
.cta-card {
  min-height: 320px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
  padding: 52px;
  position: relative;
  overflow: hidden;
}

.about-card .kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
}

.about-card h2 {
  font-size: 29px;
  line-height: 1.18;
  margin: 18px 0;
  color: #111;
}

.about-card p {
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 470px;
  margin-bottom: 26px;
  font-size: 15px;
}

.cta-card {
  color: #fff;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.45)),
    radial-gradient(circle at 80% 70%, rgba(201, 148, 34, 0.45), transparent 40%),
    #111;
}

.cta-card::after {
  content: "SKINA";
  position: absolute;
  right: -35px;
  bottom: -25px;
  font-size: 130px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: 10px;
  transform: rotate(-12deg);
  pointer-events: none;
  line-height: 1;
}

.cta-card h2 {
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.cta-card h2 span {
  color: var(--gold-light);
  display: block;
  margin-top: 4px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 430px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  font-size: 15px;
}

.cta-card .btn {
  position: relative;
  z-index: 2;
}

/* ============================================= */
/* FOOTER */
/* ============================================= */

.footer {
  background: linear-gradient(180deg, #111, #050505);
  color: #fff;
  padding: 70px 0 22px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr 1fr;
  gap: 50px;
}

.footer-logo strong {
  font-size: 42px;
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-top: 18px;
  font-size: 14px;
}

.footer h4 {
  color: var(--gold-light);
  margin-bottom: 22px;
  font-size: 14px;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-contact a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-contact svg {
  width: 14px;
  height: 14px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  margin: 0;
  transition: 0.35s ease;
}

.social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(201, 148, 34, 0.30);
}

.social svg {
  width: 16px;
  height: 16px;
}

.payments {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payments .payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: #fff;
  min-width: 56px;
  height: 38px;
  box-sizing: border-box;
}

.payments .payment-badge:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(201, 148, 34, 0.4);
}

.payments .payment-badge img.pay-logo,
.payments .payment-badge svg.pay-logo {
  display: block;
  max-width: 100%;
  max-height: 24px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding-top: 22px;
  font-size: 13px;
}

/* ============================================= */
/* WIDGET WHATSAPP INTERATIVO */
/* ============================================= */

.wa-widget-container {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wa-chat-window {
  position: absolute;
  bottom: 74px;
  left: 0;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-chat-window.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.wa-chat-header {
  background: linear-gradient(135deg, #128c7e, #075e54);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.wa-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #075e54;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 18px;
}

.wa-status-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 9px;
  height: 9px;
  background: #25d366;
  border: 2.5px solid #fff;
  border-radius: 50%;
}

.wa-chat-meta h4 {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.wa-chat-meta span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.wa-chat-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.2s;
}

.wa-chat-close:hover {
  opacity: 1;
}

.wa-chat-body {
  padding: 20px;
  background: #efe7dd;
  max-height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wa-message-received {
  background: #fff;
  padding: 10px 14px;
  border-radius: 0 12px 12px 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  max-width: 85%;
  align-self: flex-start;
  position: relative;
}

.wa-message-received p {
  font-size: 12.5px;
  line-height: 1.45;
  color: #333;
  margin: 0;
}

.wa-message-time {
  display: block;
  font-size: 9px;
  color: #999;
  text-align: right;
  margin-top: 4px;
}

.wa-chat-options {
  background: #fbfbfb;
  padding: 14px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-option-btn {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 10px 14px;
  border-radius: 10px;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  transition: all 0.25s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.wa-option-btn:hover {
  border-color: #128c7e;
  background: rgba(18, 140, 126, 0.03);
  color: #128c7e;
  transform: translateY(-1px);
}

.wa-badge-notification {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  background: #ff4d4d;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* ============================================= */
/* MODAL DE PRODUTO PREMIUM */
/* ============================================= */

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(232, 189, 85, 0.22);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  overflow: hidden;
}

@media (min-width: 768px) {
  #productModal .modal-dialog {
    max-width: 760px;
  }
  .modal-product-layout {
    display: grid;
    grid-template-columns: 1.15fr 1.3fr;
    gap: 20px;
    align-items: start;
    text-align: left;
  }
  .modal-product-left {
    position: sticky;
    top: 0;
  }
  .modal-product-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.product-modal.open .modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  width: 100%;
  flex: 1;
  padding: 0;
}

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

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  color: #333;
  font-size: 22px;
  font-weight: 300;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 5;
}

.modal-close:hover {
  background: rgba(255, 77, 77, 0.1);
  color: #ff4d4d;
  transform: rotate(90deg);
}

/* ---------- Public Product Modal Photo Slider ---------- */
.modal-product-gallery-slider {
  position: relative;
  width: 100%;
  max-height: 220px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 148, 34, 0.15);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  margin-bottom: 14px;
}
.modal-slides-container {
  display: flex;
  width: 100%;
  height: 220px;
  position: relative;
  background: #fafafa;
}
.modal-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-slide.active {
  opacity: 1;
  visibility: visible;
}
.modal-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.modal-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.25s ease;
}
.modal-slider-btn:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 10px rgba(201, 148, 34, 0.35);
}
.modal-slider-btn.prev-btn {
  left: 10px;
}
.modal-slider-btn.next-btn {
  right: 10px;
}
.modal-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.modal-slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.25s ease;
}
.modal-slider-dots .dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.modal-product-image {
  width: 100%;
  max-height: 170px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(201, 148, 34, 0.15);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.modal-product-image img {
  width: 100%;
  height: 100%;
  max-height: 170px;
  object-fit: contain;
  background: #fafafa;
  display: block;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.modal-product-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.modal-product-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 148, 34, 0.12), rgba(232, 189, 85, 0.04));
  border: 1px solid rgba(201, 148, 34, 0.22);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
}

.modal-product-icon i {
  display: inline-flex;
}

.modal-product-title-box {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.modal-product-title-box .product-badge {
  position: static;
  align-self: flex-start;
  margin-bottom: 4px;
  font-size: 9.5px;
  padding: 2px 7px;
}

.modal-product-title-box h4 {
  font-size: 16px;
  font-weight: 900;
  color: #111;
  margin: 0;
  line-height: 1.25;
}

.modal-product-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--gold-dark);
  margin-top: 2px;
}

.modal-product-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 14px;
}

.modal-product-specs {
  background: var(--cream-2);
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 14px;
}

.modal-product-specs h6 {
  font-size: 10.5px;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.modal-product-specs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.modal-product-specs li {
  font-size: 12px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.35;
}

.modal-product-specs li i {
  color: #25d366;
  font-size: 12px;
}

.modal-qty-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 12px;
  margin-bottom: 14px;
}

.modal-qty-container > span {
  font-size: 13px;
  font-weight: 800;
  color: #111;
}

.qty-selector {
  display: flex;
  align-items: center;
  background: var(--cream-2);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: #555;
  transition: 0.2s;
}

.qty-btn:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--gold);
}

.qty-value {
  width: 32px;
  font-weight: 800;
  text-align: center;
  font-size: 13px;
  color: #111;
}

.btn-modal-buy {
  width: 100%;
  min-height: 44px;
  font-size: 13px;
  letter-spacing: 0.4px;
  border-radius: 10px;
  box-shadow: 0 10px 25px var(--whatsapp-rgba-25);
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: #fff;
}

.btn-modal-buy:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  box-shadow: 0 14px 30px var(--whatsapp-rgba-35);
  transform: translateY(-2px);
}

/* ============================================= */
/* FLOAT BUTTONS */
/* ============================================= */

.top-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 20;
  box-shadow: 0 14px 30px rgba(201, 148, 34, 0.35);
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  border: none;
  cursor: pointer;
}

.top-button.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.top-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(201, 148, 34, 0.50);
}

.top-button svg {
  width: 22px;
  height: 22px;
}

.whats-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 20;
  box-shadow: 0 14px 30px var(--whatsapp-rgba-35);
  animation: whatsappPulse 2.5s infinite;
  transition: transform 0.3s ease;
}

.whats-float:hover {
  transform: translateY(-3px);
}

.whats-float svg {
  width: 30px;
  height: 30px;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35), 0 0 0 16px rgba(37, 211, 102, 0);
  }
}

/* ============================================= */
/* RESPONSIVE */
/* ============================================= */

@media (max-width: 1120px) {
  .mobile-menu-toggle {
    display: none;
  }

  .mobile-menu-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(232, 189, 85, 0.20);
    color: var(--gold-light);
    cursor: pointer;
    transition: 0.3s ease;
  }

  .mobile-menu-label:hover {
    background: rgba(232, 189, 85, 0.15);
  }

  .mobile-menu-label svg {
    width: 24px;
    height: 24px;
  }

  .nav .btn-whats {
    display: none;
  }

  .header {
    position: sticky;
    top: 14px;
  }

  .nav {
    position: relative;
    display: flex;
    justify-content: space-between;
  }

  .menu {
    position: absolute;
    top: -400px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--header-bg-alt, #181818), var(--header-bg, #0a0a0a));
    flex-direction: column;
    padding: 20px 16px;
    border-radius: 0 0 24px 24px;
    border-bottom: 1px solid var(--primary-rgba-18, rgba(232, 189, 85, 0.18));
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    z-index: -1;
    opacity: 0;
  }

  .mobile-menu-toggle:checked ~ .menu {
    top: 76px;
    opacity: 1;
  }

  .menu a {
    font-size: 14px;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
  }
  
  .menu a:hover, .menu a.active {
    background: rgba(232, 189, 85, 0.10);
    transform: none;
  }

  .menu-backdrop {
    display: none !important;
  }

  .hero-grid,
  .partner-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 55px 0;
  }

  .hero-visual {
    min-height: 540px;
  }

  .circle-bg {
    right: 50%;
    transform: translateX(50%);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .expositor-box {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .benefit {
    border-right: none;
    justify-content: flex-start;
  }

  .footer-grid {
    gap: 36px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: 92%;
  }

  .header {
    min-height: 76px;
  }

  .logo-img {
    height: 38px;
  }

  .footer-logo .logo-img {
    height: 44px;
  }

  .menu {
    width: 100%;
    padding: 40px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding: 46px 0 30px;
  }

  .tagline {
    font-size: 11px;
    letter-spacing: 5px;
    padding-left: 38px;
    margin-bottom: 16px;
  }

  .tagline::before {
    width: 28px;
  }

  .hero h1 {
    font-size: 44px;
    letter-spacing: -1px;
  }

  .hero h2 {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    margin-bottom: 28px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-bottom: 28px;
  }

  .stat {
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    padding-left: 0;
  }

  .stat::before {
    display: none;
  }

  .stat strong {
    font-size: 24px;
  }

  .stat span {
    font-size: 8px;
    letter-spacing: 0.5px;
    text-align: center;
  }

  .benefits-mini {
    display: none !important; /* Remove duplicated information to avoid mobile clutter */
  }

  .hero-visual {
    min-height: 380px;
    margin-top: 20px;
  }

  .circle-bg {
    width: 320px;
    height: 320px;
    top: 10px;
  }

  .phone-mockup {
    width: 200px;
    height: 390px;
    padding: 10px;
    border-radius: 34px;
  }
  
  .phone-screen {
    border-radius: 24px;
    padding: 30px 16px 20px;
  }

  .phone-bolt {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 16px;
  }
  
  .phone-bolt svg {
    width: 22px;
    height: 22px;
  }

  .phone-screen-logo {
    font-size: 24px;
  }

  .phone-mini-cards {
    gap: 6px;
  }
  
  .phone-mini-card {
    padding: 8px 4px;
    font-size: 8px;
    border-radius: 6px;
  }

  .premium-badge {
    right: 4px;
    top: -10px;
    width: 80px;
    height: 100px;
  }

  .premium-badge strong {
    font-size: 28px;
  }

  .premium-badge small {
    font-size: 9px;
  }

  .premium-badge span {
    font-size: 11px;
  }

  .floating-product {
    display: none;
  }

  .section-title {
    gap: 15px;
    margin-bottom: 32px;
  }

  .section-title h2 {
    font-size: 18px;
  }

  .section-title span {
    width: 30px;
  }

  /* Compact columns to fit screen width */
  .category-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .category-card {
    min-height: auto;
    padding: 20px 12px 16px;
    border-radius: 14px;
  }

  .category-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 12px;
    border-radius: 14px;
  }

  .category-icon svg {
    width: 26px;
    height: 26px;
  }

  .category-card h3 {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .category-card p {
    font-size: 11px;
    line-height: 1.3;
  }

  .product-card {
    padding: 16px 12px;
    border-radius: 14px;
  }

  .product-badge,
  .product-stock {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    align-self: flex-start;
    margin-bottom: 6px;
  }

  .product-tools {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-sort-control {
    justify-content: space-between;
    border-radius: 14px;
  }

  .product-sort-control select {
    flex: 1;
    min-width: 0;
  }

  .product-results-bar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .product-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .product-icon svg {
    width: 22px;
    height: 22px;
  }

  .product-info h3 {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .product-desc {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 14px;
  }

  .product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .product-actions {
    width: 100%;
    grid-template-columns: 1fr 42px;
  }

  .product-price {
    font-size: 15px;
  }

  .product-footer .btn {
    width: 100%;
    min-height: 34px;
    font-size: 9px;
  }

  .btn-card-whatsapp {
    width: 42px !important;
    min-width: 42px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Horizontal swipeable benefits list */
  .benefits-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding: 10px 4px 20px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .benefits-grid::-webkit-scrollbar {
    display: none !important;
  }

  .benefit {
    flex: 0 0 240px !important;
    scroll-snap-align: start !important;
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 14px !important;
    padding: 16px 20px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
    justify-content: center !important;
    border-right: 1px solid rgba(0, 0, 0, 0.06) !important;
  }

  .categories,
  .featured-products,
  .partner-section,
  .faq-section,
  .about-section {
    padding: 40px 0;
  }

  .expositor-box,
  .locations-box,
  .about-card,
  .cta-card {
    padding: 36px 26px;
  }

  .expositor-text h2,
  .locations-box h2 {
    font-size: 22px;
  }

  .btn-black {
    min-width: 100%;
  }

  .about-card h2,
  .cta-card h2 {
    font-size: 23px;
  }

  .footer {
    padding-top: 50px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-logo strong {
    font-size: 34px;
  }

  .top-button,
  .whats-float {
    width: 48px;
    height: 48px;
    right: 18px;
    bottom: 18px;
  }

  .whats-float {
    left: 18px;
  }

  /* Testimonials mobile adjustments */
  .testimonials-carousel {
    height: 380px;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  .testimonial-quote {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 20px;
  }
}

/* ============================================= */
/* DARK THEME SPECIFICS FOR NEW SECTIONS */
/* ============================================= */
body.dark-theme .hero h2 {
  color: var(--neon-green);
}

body.dark-theme .differentials-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

body.dark-theme .diff-icon {
  background: rgba(232, 189, 85, 0.08);
  border: 1px solid rgba(232, 189, 85, 0.22);
}

body.dark-theme .slider {
  background: var(--border-dark);
}

body.dark-theme .slider::-webkit-slider-thumb {
  border-color: var(--white);
}

body.dark-theme .result-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-theme .result-box.highlighted {
  background: rgba(232, 189, 85, 0.08);
}


/* ============================================= */
/* DIFERENCIAIS DE QUALIDADE (NEW SECTION) */
/* ============================================= */
.differentials-strip {
  padding: 30px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
}

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

.diff-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.diff-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 148, 34, 0.08);
  border: 1px solid rgba(201, 148, 34, 0.22);
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.diff-icon svg {
  width: 22px;
  height: 22px;
}

.diff-card:hover .diff-icon {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.diff-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.diff-text strong {
  font-size: 11px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.5px;
}

.diff-text span {
  font-size: 11px;
  color: var(--text-soft);
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================= */
/* MURAL DE AVISOS (TOP BANNER) */
/* ============================================= */
.notification-top-banner {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  color: #fff;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  font-family: var(--font-family-site);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.notification-top-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-right: 40px;
}

.notification-close-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.2s;
  line-height: 1;
}

.notification-close-btn:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

/* ============================================= */
/* HERO SLIDER (HERO CARROSSEL) */
/* ============================================= */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-content {
  width: 100%;
  z-index: 3;
}

.hero-slide .hero-text {
  max-width: 650px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  transition-delay: 0.2s;
}

.hero-slide.active .hero-text {
  transform: translateY(0);
  opacity: 1;
}

.hero-slide h1 {
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.hero-slide p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(201, 148, 34, 0.4);
}

.hero-slider-btn.prev-btn {
  left: 24px;
}

.hero-slider-btn.next-btn {
  right: 24px;
}

.hero-slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-indicator.active {
  width: 30px;
  border-radius: 5px;
  background: var(--gold);
}

@media (max-width: 768px) {
  .shop-hero {
    padding: 112px 0 32px;
  }

  .shop-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .shop-hero-actions {
    justify-content: flex-start;
  }

  .shop-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-slider-section {
    height: 70vh;
    min-height: 460px;
  }
  .hero-slide h1 {
    font-size: 32px;
    letter-spacing: -1px;
    line-height: 1.05;
    word-break: break-word;
  }
  .hero-slide p {
    font-size: 13.5px;
  }
  .hero-slider-btn {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
  .hero-slider-btn.prev-btn {
    left: 10px;
  }
  .hero-slider-btn.next-btn {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .hero-slide h1 {
    font-size: 26px;
  }
  .hero-slide p {
    font-size: 12.5px;
    margin-bottom: 18px;
  }
}

/* ============================================= */
/* CUPOM DE DESCONTO NO MODAL */
/* ============================================= */
.modal-coupon-container {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 12px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-coupon-label {
  font-size: 12px;
  font-weight: 800;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-coupon-label svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
}

.modal-coupon-input-group {
  display: flex;
  gap: 6px;
}

.modal-coupon-input {
  flex: 1;
  min-height: 34px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0 10px;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: monospace;
  outline: none;
  transition: border-color 0.2s;
  background: var(--cream-2);
  color: #2b2b2b;
}

.modal-coupon-input:focus {
  border-color: var(--gold);
}

.btn-modal-coupon-apply {
  padding: 0 16px;
  border: none;
  background: var(--gold);
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-modal-coupon-apply:hover {
  background: var(--gold-dark);
}

.modal-coupon-feedback {
  font-size: 11px;
  font-weight: 700;
  display: none;
  margin-top: 2px;
}

.modal-coupon-feedback.success {
  color: #27ae60;
  display: block;
}

.modal-coupon-feedback.error {
  color: #c0392b;
  display: block;
}

.modal-price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 12px;
  padding: 10px 14px;
  background: rgba(201, 148, 34, 0.05);
  border-radius: 8px;
  border: 1px dashed rgba(201, 148, 34, 0.2);
  display: none;
}

.modal-price-row {
  display: flex;
  justify-content: space-between;
}

.modal-price-row.discount {
  color: #27ae60;
  font-weight: 700;
}

.modal-price-row.total {
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 15px;
  border-top: 1px solid rgba(201, 148, 34, 0.15);
  padding-top: 4px;
  margin-top: 4px;
}

/* ============================================= */
/* AJUSTES ADICIONAIS FASE 8: DARK THEME E RESPONSIVIDADE */
/* ============================================= */

/* Correções de visibilidade no Dark Theme */
body.dark-theme .modal-product-title-box h4 {
  color: var(--text) !important;
}
body.dark-theme .modal-product-specs h6 {
  color: var(--text) !important;
}
body.dark-theme .modal-close {
  color: var(--text) !important;
}
body.dark-theme .modal-coupon-label {
  color: var(--text) !important;
}
body.dark-theme .modal-coupon-input {
  color: var(--text) !important;
  background: var(--cream-3) !important;
  border-color: var(--border) !important;
}

/* Responsividade do Modal para Celulares */
@media (max-width: 480px) {
  .product-modal {
    padding: 10px !important;
  }
  .modal-dialog {
    max-height: 95vh !important;
    border-radius: 16px !important;
  }
  .modal-content {
    padding: 0 !important;
  }
  .modal-body {
    padding: 16px !important;
  }
  .modal-product-image {
    max-height: 140px !important;
    margin-bottom: 12px !important;
  }
  .modal-product-image img {
    max-height: 140px !important;
  }
  .modal-product-header {
    gap: 10px !important;
    margin-bottom: 12px !important;
  }
  .modal-product-icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 20px !important;
    border-radius: 10px !important;
  }
  .modal-product-title-box h4 {
    font-size: 15px !important;
  }
  .modal-product-price {
    font-size: 16px !important;
  }
  .modal-product-desc {
    font-size: 12.5px !important;
    margin-bottom: 12px !important;
    line-height: 1.45 !important;
  }
  .modal-product-specs {
    padding: 10px 12px !important;
    margin-bottom: 12px !important;
  }
  .modal-product-specs h6 {
    font-size: 10.5px !important;
    margin-bottom: 6px !important;
  }
  .modal-product-specs li {
    font-size: 11.5px !important;
  }
  .modal-coupon-container {
    margin-bottom: 12px !important;
    padding-top: 10px !important;
  }
}

/* Customização do Badge do Google reCAPTCHA v3 (Invisível) */
/* Oculta o selo flutuante do reCAPTCHA completamente (requisito legal de termos é exibido no rodapé do formulário de contato) */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* ============================================= */
/* SEÇÃO DE ASSISTÊNCIA TÉCNICA (SKINA CELL) */
/* ============================================= */
.tech-assistance-section {
  background-color: #0c0c0c;
  color: #fff;
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.assistance-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.assistance-text h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}

.assistance-text .line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 15px 0 25px 0;
  border-radius: 2px;
}

.assistance-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 20px;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 30px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
  font-size: 14.5px;
  color: #fff;
}

.service-item span {
  font-size: 20px;
  color: var(--gold);
}

.service-item strong {
  font-weight: 600;
}

.service-item:hover {
  background: rgba(201, 148, 34, 0.05);
  border-color: rgba(201, 148, 34, 0.2);
  transform: translateY(-2px);
}

.assistance-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(251, 202, 34, 0.1);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-gold);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.assistance-form:hover {
  border-color: rgba(201, 148, 34, 0.25) !important;
}

.assistance-form h3 {
  color: #fff;
  margin-bottom: 24px;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.5px;
}

.assistance-form .form-group {
  margin-bottom: 18px;
}

.assistance-form label {
  display: block;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 8px;
  font-weight: 600;
}

.assistance-form .form-control {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13.5px;
  transition: all 0.3s ease;
}

.assistance-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 35px !important;
  height: 41px;
}

.assistance-form textarea.form-control {
  height: 85px;
  resize: none;
  font-family: inherit;
}

.assistance-form input.form-control:focus,
.assistance-form select.form-control:focus,
.assistance-form textarea.form-control:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 10px rgba(201, 148, 34, 0.15) !important;
  outline: none;
}

.assistance-form .btn-gold {
  width: 100%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  font-size: 13.5px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  border-radius: 8px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.assistance-form .btn-gold svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.assistance-form .btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--primary-rgba-25);
}

.assistance-form #ast-form-feedback {
  margin-top: 12px;
  font-size: 13px;
  text-align: center;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .assistance-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 580px) {
  .services-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .assistance-form {
    padding: 24px 20px !important;
  }
  .tech-assistance-section {
    padding: 60px 0 !important;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================= */
/* RESPONSIVIDADE COMPLEMENTAR (GRID & SPACING) */
/* ============================================= */
@media (max-width: 760px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================= */
/* AJUSTES MOBILE (≤ 480px) — Evita overflow */
/* ============================================= */
@media (max-width: 480px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
  }

  .container {
    width: 94% !important;
    padding-left: 0;
    padding-right: 0;
  }

  /* Hero principal */
  .hero h1 {
    font-size: 36px !important;
    letter-spacing: -0.5px !important;
  }
  .hero h2 {
    font-size: 17px !important;
    letter-spacing: 2px !important;
  }
  .hero-text p {
    font-size: 13.5px !important;
  }
  .tagline {
    font-size: 10px !important;
    letter-spacing: 3px !important;
    padding-left: 30px !important;
  }
  .tagline::before {
    width: 22px !important;
  }

  /* Section titles */
  .section-title h2 {
    font-size: 16px !important;
    letter-spacing: 1.5px !important;
    word-break: break-word;
  }
  .section-title {
    gap: 10px !important;
    margin-bottom: 24px !important;
  }
  .section-title span {
    width: 20px !important;
  }

  /* Hero stats em 2 colunas */
  .hero-stats .stat strong {
    font-size: 20px !important;
  }

  /* Botões responsivos */
  .btn {
    font-size: 12px !important;
    padding: 11px 16px !important;
  }
  .btn-gold svg, .btn-outline svg {
    width: 14px;
    height: 14px;
  }

  /* Assistance form */
  .assistance-form {
    padding: 20px 16px !important;
    border-radius: 18px !important;
  }
  .assistance-form h3 {
    font-size: 15px !important;
    margin-bottom: 18px !important;
  }
  .assistance-form .btn-gold {
    font-size: 12px !important;
    padding: 12px 14px !important;
    letter-spacing: 0.2px !important;
    line-height: 1.25;
  }

  /* Cards de produto em 1 coluna em telas muito estreitas */
  .products-grid {
    grid-template-columns: 1fr !important;
  }

  /* Quebra textos longos */
  .product-card h3,
  .product-desc,
  .modal-product-title-box h4,
  .modal-product-desc,
  .testimonial-quote,
  .footer p,
  .about-card p {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Section padding reduzido */
  .categories,
  .featured-products,
  .partner-section,
  .faq-section,
  .about-section,
  .tech-assistance-section,
  .testimonials {
    padding: 36px 0 !important;
  }

  /* Locations e expositor */
  .expositor-box,
  .locations-box,
  .about-card,
  .cta-card {
    padding: 24px 18px !important;
    border-radius: 18px !important;
  }
  .expositor-text h2,
  .locations-box h2,
  .about-card h2,
  .cta-card h2 {
    font-size: 18px !important;
    word-break: break-word;
  }

  /* Notification banner */
  .notification-top-banner {
    font-size: 11.5px !important;
    padding: 8px 0 !important;
    letter-spacing: 0.2px !important;
  }
  .notification-top-banner .container {
    padding-right: 32px !important;
  }

  /* Botões flutuantes WhatsApp/topo - não vazar */
  .top-button,
  .whats-float {
    width: 46px !important;
    height: 46px !important;
    right: 14px !important;
    bottom: 14px !important;
  }
  .whats-float {
    left: 14px !important;
  }

  /* Widget WhatsApp chat — ocupa quase tela toda */
  .wa-chat-window {
    width: calc(100vw - 28px) !important;
    max-width: 360px !important;
    right: 14px !important;
    left: auto !important;
  }

  /* Header padding interno reduzido */
  .nav {
    padding: 8px 14px 8px 18px !important;
  }
  .logo-img {
    height: 32px !important;
  }

  /* Footer texto */
  .footer p {
    font-size: 13px !important;
    line-height: 1.5;
  }
  .footer h4 {
    font-size: 13px !important;
  }
  .footer-grid {
    gap: 28px !important;
  }
  .copy {
    font-size: 11.5px !important;
    padding: 18px 10px !important;
    line-height: 1.5;
    word-break: break-word;
  }

  /* Carrossel de depoimentos */
  .testimonials-carousel {
    height: auto !important;
    min-height: 320px;
  }
  .testimonial-card {
    padding: 22px 16px !important;
  }
  .testimonial-quote {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
  }
  .carousel-btn {
    width: 36px !important;
    height: 36px !important;
  }

  /* CTA depoimento */
  .testimonial-cta .btn {
    padding: 12px 18px !important;
    font-size: 12px !important;
  }

  /* Logo do footer */
  .footer-logo .logo-img {
    height: 38px !important;
  }

  /* FAQ */
  .faq-question {
    padding: 16px 18px !important;
    font-size: 13.5px !important;
    gap: 12px !important;
  }
  .faq-answer {
    padding: 0 18px 16px !important;
    font-size: 13px !important;
  }

  /* Modal de produto: garantir que não estoura */
  .product-modal {
    padding: 8px !important;
  }

  /* Modal de depoimento (compacto) */
  #testimonialModal .modal-dialog {
    max-width: calc(100vw - 24px) !important;
  }

  /* Footer payments — não vazar */
  .payments {
    gap: 8px !important;
  }
  .payments .payment-badge {
    padding: 5px 8px !important;
    min-width: 50px !important;
    height: 34px !important;
  }
  .payments .payment-badge img.pay-logo {
    max-height: 20px !important;
  }

  /* Hero-buttons */
  .hero-buttons .btn {
    font-size: 12.5px !important;
    padding: 13px 16px !important;
  }
}

/* ============================================= */
/* AJUSTES PARA CELULARES PEQUENOS (≤ 380px) */
/* ============================================= */
@media (max-width: 380px) {
  .container {
    width: 96% !important;
  }
  .hero h1 {
    font-size: 30px !important;
  }
  .hero h2 {
    font-size: 14px !important;
    letter-spacing: 1.5px !important;
  }
  .hero-stats {
    gap: 10px !important;
  }
  .hero-stats .stat strong {
    font-size: 18px !important;
  }
  .hero-stats .stat span {
    font-size: 7.5px !important;
  }
  .section-title h2 {
    font-size: 14.5px !important;
    letter-spacing: 1px !important;
  }
  .btn {
    font-size: 11.5px !important;
    padding: 10px 14px !important;
  }
  .nav {
    padding: 6px 12px 6px 14px !important;
  }
  .logo-img {
    height: 28px !important;
  }
  .mobile-menu-label {
    width: 38px !important;
    height: 38px !important;
  }
  .mobile-menu-label svg {
    width: 20px !important;
    height: 20px !important;
  }
}

/* ============================================= */
/* SHOPPING CART & TECH ASSISTANCE TIMELINE STYLES */
/* ============================================= */

/* Floating Cart Button */
.cart-float {
  position: fixed;
  right: 24px;
  bottom: 96px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(201, 148, 34, 0.4);
  transition: all 0.3s ease;
  z-index: 99;
}
.cart-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 14px 30px rgba(201, 148, 34, 0.55);
}
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e74c3c;
  color: #fff;
  border-radius: 50%;
  padding: 3px 7px;
  font-size: 11px;
  font-weight: 800;
  border: 2px solid #000;
  line-height: 1;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(17, 17, 21, 0.95) 0%, rgba(8, 8, 10, 0.98) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid rgba(201, 148, 34, 0.2);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.85);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.active {
  right: 0;
}
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
}
.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 18px;
  margin-bottom: 24px;
}
.cart-drawer-header h3 {
  font-size: 19px;
  color: #fff;
  font-weight: 800;
  font-family: var(--font-family-site);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cart-title-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}
.cart-drawer-close {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #a6a6a6;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  font-size: 20px;
}
.cart-drawer-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 24px;
  padding-right: 4px;
}
.cart-drawer-body::-webkit-scrollbar {
  width: 4px;
}
.cart-drawer-body::-webkit-scrollbar-thumb {
  background: rgba(201, 148, 34, 0.4);
  border-radius: 2px;
}
.cart-empty-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 240px;
  color: #888;
  font-size: 14px;
  gap: 16px;
  font-weight: 500;
}
.cart-empty-message::before {
  content: "";
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(214, 167, 71, 0.2);
  background:
    linear-gradient(135deg, rgba(214, 167, 71, 0.15), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 34% 72%, currentColor 0 2.5px, transparent 3px),
    radial-gradient(circle at 66% 72%, currentColor 0 2.5px, transparent 3px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  opacity: 0.8;
}

.cart-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.service-item span svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Cart Item Card - Premium Floating Glassmorphic Design */
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  margin-bottom: 14px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.cart-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 148, 34, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.cart-item-img {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s;
}
.cart-item:hover .cart-item-img {
  transform: scale(1.03);
}
.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-item-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.35;
}
.cart-item-variation {
  font-size: 11px;
  color: var(--gold);
  margin-top: 3px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.cart-item-price {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--gold-light);
  margin-top: 5px;
}
.cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.cart-qty-ctrl {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  height: 30px;
  transition: border-color 0.2s;
}
.cart-qty-ctrl:hover {
  border-color: rgba(201, 148, 34, 0.3);
}
.cart-qty-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  width: 28px;
  height: 100%;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.cart-qty-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.cart-qty-val {
  padding: 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  min-width: 20px;
  text-align: center;
}
.cart-item-remove {
  background: none;
  border: none;
  color: rgba(231, 76, 60, 0.8);
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(231, 76, 60, 0.06);
  transition: all 0.2s ease;
}
.cart-item-remove:hover {
  color: #ff6b6b;
  background: rgba(231, 76, 60, 0.15);
  transform: translateY(-0.5px);
}

/* Cart Footer */
.cart-drawer-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
}
.cart-coupon-section {
  display: flex;
  gap: 8px;
}
.cart-coupon-section input {
  flex: 1;
  height: 40px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 10px;
  padding: 0 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cart-coupon-section input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 148, 34, 0.15);
}
.cart-coupon-section button {
  height: 40px;
  border-radius: 10px;
  padding: 0 16px;
  font-weight: 700;
}
.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: #a6a6a6;
}
.cart-total-final {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.cart-total-final span:last-child {
  color: var(--gold);
}
#btn-cart-checkout {
  background: linear-gradient(135deg, #25d366 0%, #1ebd54 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  height: 48px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  transition: all 0.25s ease-in-out;
}
#btn-cart-checkout:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #2bf075 0%, #22d45e 100%) !important;
}
#btn-cart-checkout:active {
  transform: translateY(0);
}

/* public O.S. timeline search tracking */
.track-timeline {
  margin-top: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 148, 34, 0.2);
  border-radius: 12px;
  display: none;
  text-align: left;
}
.track-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.track-header h4 {
  color: #fff;
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}
.track-header p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 4px 0 0 0;
}
.timeline-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 24px;
}
.timeline-steps::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 2px;
  height: calc(100% - 12px);
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}
.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
}
.timeline-step-bullet {
  position: absolute;
  top: 4px;
  left: -24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #333;
  border: 2px solid #111;
  z-index: 2;
  transition: all 0.3s ease;
}
.timeline-step.active .timeline-step-bullet {
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}
.timeline-step.completed .timeline-step-bullet {
  background: #2ebd59;
  box-shadow: 0 0 8px rgba(46, 189, 89, 0.5);
}
.timeline-step-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #888;
}
.timeline-step.active .timeline-step-title {
  color: #fff;
}
.timeline-step.completed .timeline-step-title {
  color: #2ebd59;
}
.timeline-step-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Testimonial Form styling */
.testimonial-submit-card {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 24px;
}
.testimonial-stars-input {
  display: flex;
  gap: 8px;
  font-size: 24px;
  cursor: pointer;
  user-select: none;
  margin-bottom: 12px;
}
.testimonial-stars-input span {
  color: #444;
  transition: color 0.2s;
}
.testimonial-stars-input span.selected,
.testimonial-stars-input span:hover,
.testimonial-stars-input span:hover ~ span {
  color: var(--gold);
}

@media (max-width: 500px) {
  .cart-drawer {
    width: 100%;
  }
  .cart-float {
    width: 48px;
    height: 48px;
    font-size: 20px;
    right: 18px;
    bottom: 84px;
  }
  .cart-badge {
    padding: 2px 6px;
    font-size: 10px;
  }
}

/* ============================================= */
/* UX REFINEMENTS - PRODUCT MODAL, CART, WHATSAPP */
/* ============================================= */
#productModal {
  padding: clamp(10px, 2vw, 24px);
  align-items: center;
}

#productModal .modal-dialog {
  max-width: min(1120px, calc(100vw - 28px));
  width: 100%;
  max-height: min(92vh, 860px);
  border-radius: 18px;
}

#productModal .modal-content {
  min-height: 0;
}

#productModal .modal-body {
  padding: 24px;
  min-height: 0;
  scrollbar-width: thin;
}

#productModal .modal-product-layout {
  align-items: stretch;
}

#productModal .modal-product-left,
#productModal .modal-product-right {
  min-width: 0;
}

#productModal .modal-product-left {
  display: flex;
  flex-direction: column;
}

#productModal .modal-product-right {
  max-height: calc(92vh - 78px);
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}

#productModal .modal-product-price-box,
#productModal #modal-buy-button-wrapper {
  flex-shrink: 0;
}

#productModal .modal-product-gallery-slider,
#productModal .modal-slides-container {
  max-height: none;
  height: clamp(220px, 34vh, 360px);
}

#productModal .modal-product-image {
  max-height: none;
  height: clamp(220px, 34vh, 360px);
}

#productModal .modal-product-image img {
  max-height: none;
  height: 100%;
}

#productModal .btn-modal-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal-product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 12px;
}

.modal-product-trust span {
  border: 1px solid rgba(201, 148, 34, 0.18);
  background: rgba(201, 148, 34, 0.08);
  color: #8a6415;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 800;
}

.cart-drawer {
  z-index: 2300;
}

.cart-drawer-overlay {
  z-index: 2290;
}

.cart-drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  #productModal {
    align-items: stretch;
    padding: 8px;
  }

  #productModal .modal-dialog {
    max-width: 100%;
    max-height: calc(100dvh - 16px);
    border-radius: 16px;
  }

  #productModal .modal-body {
    padding: 18px 14px 16px;
  }

  #productModal .modal-product-right {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  #productModal .modal-product-gallery-slider,
  #productModal .modal-slides-container,
  #productModal .modal-product-image {
    height: 220px;
  }

  #productModal #modal-buy-button-wrapper {
    position: sticky;
    bottom: -16px;
    z-index: 4;
    margin: 14px -14px -16px;
    padding: 10px 14px 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.78), #ffffff 35%);
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  .wa-widget-container {
    left: 14px;
    right: auto;
    bottom: 14px;
  }

  .wa-chat-window {
    position: fixed !important;
    left: 14px !important;
    right: 14px !important;
    bottom: 76px !important;
    width: auto !important;
    max-width: none !important;
    max-height: min(72dvh, 520px);
  }
}

/* ============================================= */
/* BARRA DE PESQUISA DE PRODUTOS */
/* ============================================= */
.product-search-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.product-search-box {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 20px 6px 18px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

body.dark-theme .product-search-box {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .product-search-box:focus-within {
  background: rgba(255, 255, 255, 0.05);
}

.product-search-box:hover,
.product-search-box:focus-within {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 8px 30px rgba(201, 148, 34, 0.12);
  transform: translateY(-2px);
}

.product-search-box .search-icon {
  color: var(--text-soft);
  margin-right: 12px;
  opacity: 0.75;
  display: grid;
  place-items: center;
}

.product-search-box .search-icon svg {
  width: 17px;
  height: 17px;
}

.product-search-box input[type="text"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-family-site) !important;
  font-size: 14.5px;
  color: #111;
  padding: 10px 0;
  width: 100%;
}

.product-search-box input[type="text"]::placeholder {
  color: #9a9a9a;
}

body.dark-theme .product-search-box input[type="text"] {
  color: #fff;
}

body.dark-theme .product-search-box input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.search-clear-btn {
  background: none;
  border: none;
  color: #777;
  font-size: 20px;
  cursor: pointer;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  outline: none;
}

.search-clear-btn:hover {
  color: var(--gold);
}

.hide-product {
  display: none !important;
}

.fade-in-product {
  animation: fadeInProduct 0.4s ease forwards;
}

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



