/* ============================================================
   NG BUSINESS STORE — style.css
   ============================================================ */
/* === VARIABLES === */
:root {
  --red:        #D4AF37;   /* Dourado principal */
  --red-dark:   #A57C1B;   /* Dourado escuro */
  --red-light:  #F5D76E;   /* Dourado claro */

  --dark:       #0F0F10;   /* Preto principal */
  --dark-2:     #1A1A1C;   /* Preto secundário */

  --gold:       #C7CCD4;   /* Prata */
  --gold-dark:  #8D939C;   /* Prata escura */

  --white:      #FFFFFF;
  --off-white:  #F5F5F5;

  --gray-1:     #707070;
  --gray-2:     #BFBFBF;
  --gray-3:     #E8E8E8;

  --wa:         #25D366;
  --wa-dark:    #1EBE57;

  --font-d: 'Barlow Condensed', sans-serif;
  --font-b: 'Inter', sans-serif;
  --font-p: 'Oswald', sans-serif;

  --tr:      0.3s ease;
  --tr-fast: 0.15s ease;

  --sh-sm:   0 2px 10px rgba(0,0,0,0.15);
  --sh-md:   0 4px 24px rgba(0,0,0,0.25);
  --sh-lg:   0 8px 48px rgba(0,0,0,0.35);

  --r:       12px;
  --r-sm:    6px;
  --r-lg:    20px;
  --r-full:  9999px;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); background: var(--white); color: #1A1A1A; line-height: 1.6; overflow-x: hidden; }
body.loading { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--tr); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-b); }
input { font-family: var(--font-b); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === TYPOGRAPHY === */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 1rem;
  color: var(--gray-1);
  max-width: 560px;
  margin: 0 auto;
}
.section-head { text-align: center; margin-bottom: 48px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: all var(--tr);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,0,26,.28); }

.btn-gold { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,193,13,.35); }

.btn-whatsapp { background: var(--wa); color: var(--white); border-color: var(--wa); }
.btn-whatsapp:hover { background: var(--wa-dark); border-color: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.3); }

.btn-outline-white { border-color: rgba(255,255,255,.8); color: var(--white); background: rgba(255,255,255,.08); backdrop-filter: blur(4px); }
.btn-outline-white:hover { background: var(--white); color: var(--dark); }

.btn-outline-red { border-color: var(--red); color: var(--red); background: transparent; }
.btn-outline-red:hover { background: var(--red); color: var(--white); }

.full-w { width: 100%; }

/* === LOADER === */
.loader {
  position: fixed; inset: 0;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
  color: var(--white);
  margin-bottom: 28px;
}
.loader-logo i { font-size: 2.4rem; color: var(--gold); }
.loader-logo strong { font-family: var(--font-d); font-size: 1.6rem; font-weight: 900; letter-spacing: 2px; display: block; }
.loader-logo span { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.6); }
.loader-bar-wrap { width: 200px; height: 4px; background: rgba(255,255,255,.15); border-radius: var(--r-full); overflow: hidden; margin: 0 auto 16px; }
.loader-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--red), var(--gold)); border-radius: var(--r-full); animation: loaderProgress 1.8s ease forwards; }
@keyframes loaderProgress { to { width: 100%; } }
.loader-text { font-size: 0.8rem; color: rgba(255,255,255,.5); letter-spacing: 1px; text-transform: uppercase; }

/* === HEADER === */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

/* Top Bar */
.header-topbar {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  font-size: 0.78rem;
  padding: 7px 0;
  transition: all 0.4s ease;
}
.header-topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar-left { display: flex; align-items: center; gap: 8px; }
.topbar-left i { color: var(--gold); font-size: 0.75rem; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right a { color: rgba(255,255,255,.8); font-size: 0.78rem; display: flex; align-items: center; gap: 5px; }
.topbar-right a:hover { color: var(--gold); }
.topbar-right i { font-size: 0.7rem; }

/* Main Header */
.header-main {
  background: var(--white);
  box-shadow: var(--sh-sm);
  transition: all 0.3s ease;
  border-block-start-color: 
}
.header.scrolled .header-topbar { display: none; }
.header.scrolled .header-main { box-shadow: var(--sh-md); }
.header-main .container { display: flex; align-items: center; gap: 20px; padding-top: 14px; padding-bottom: 14px; }

/* Logo */
.header-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.header-logo i { font-size: 1.8rem; color: var(--red); }
.logo-text strong { font-family: var(--font-d); font-size: 1.25rem; font-weight: 900; letter-spacing: 1.5px; color: var(--dark); display: block; line-height: 1; }
.logo-text span { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-1); }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-link { font-size: 0.875rem; font-weight: 600; color: var(--dark); padding: 8px 14px; border-radius: var(--r-sm); transition: all var(--tr); position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 2px; background: var(--red); transform: scaleX(0); transition: transform var(--tr); border-radius: 2px; }
.nav-link:hover { color: var(--red); }
.nav-link:hover::after { transform: scaleX(1); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; }
.action-btn {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  font-size: 1rem;
  position: relative;
  transition: all var(--tr);
  background: var(--gray-3);
}
.action-btn:hover { background: var(--red); color: var(--white); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--red); color: var(--white);
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
  opacity: 0; transform: scale(0);
  transition: all var(--tr);
}
.cart-badge.visible { opacity: 1; transform: scale(1); }
.mobile-toggle { display: none; }

/* Search Bar */
.search-bar {
  background: var(--off-white);
  border-top: 1px solid var(--gray-2);
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.search-bar.open { max-height: 80px; padding: 12px 0; }
.search-inner {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 2px solid var(--gray-2);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  transition: border-color var(--tr);
}
.search-inner:focus-within { border-color: var(--red); }
.search-inner i { color: var(--gray-1); font-size: 0.9rem; flex-shrink: 0; }
.search-inner input { flex: 1; border: none; outline: none; background: none; font-size: 0.95rem; color: var(--dark); }
#searchClear { color: var(--gray-1); font-size: 0.85rem; padding: 2px 6px; border-radius: 4px; }
#searchClear:hover { color: var(--red); }

/* Mobile Menu */
.mobile-menu {
  background: var(--dark);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-menu.open { max-height: 500px; }
.mobile-menu nav { padding: 8px 0; }
.mobile-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all var(--tr);
}
.mobile-link i { width: 18px; text-align: center; color: var(--gold); }
.mobile-link:hover { color: var(--white); background: rgba(255,255,255,.05); padding-left: 32px; }
.mobile-contact { padding: 16px 24px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid rgba(255,255,255,.1); }
.mobile-phone { color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.mobile-phone i { color: var(--gold); }
.btn-whatsapp-mob {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--wa); color: var(--white);
  padding: 12px; border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.9rem;
}
.mobile-social { padding: 16px 24px; display: flex; gap: 14px; }
.mobile-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.9rem; }
.mobile-social a:hover { background: var(--red); }

/* Header offset for fixed nav */
.hero { padding-top: 0; }
body { padding-top: 114px; }
body.menu-open { overflow: hidden; }

/* === HERO === */
.hero { position: relative; min-height: calc(100vh - 114px); overflow: hidden; }
.hero-slider { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.7s ease;
  display: flex; flex-direction: column;
}
.hero-slide.active { opacity: 1; pointer-events: all; position: relative; }

.slide-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.slide-bg-1 { background: linear-gradient(135deg, #1C0A06 0%, #5C0010 50%, #7c2626eb 100%); }
.slide-bg-2 { background: linear-gradient(135deg, #77267d 0%,#a4267f  50%, #e552baeb 100%); }
.slide-bg-3 { background: linear-gradient(135deg, #1d2684 0%, #233d99 50%, #4468e7 100%); }

.hero-slide .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 40px;
  min-height: calc(100vh - 114px);
  padding-top: 60px; padding-bottom: 80px;
}

.slide-content { color: var(--white); }
.slide-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 16px; border-radius: var(--r-full);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.slide-eyebrow i { font-size: 0.7rem; }
.slide-title {
  font-family: var(--font-d);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.slide-title span { color: var(--gold); display: block; }
.slide-desc { font-size: 1.05rem; color: rgba(255,255,255,.82); margin-bottom: 32px; max-width: 460px; line-height: 1.65; }
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.slide-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.stat {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,.75);
}
.stat i { color: var(--gold); font-size: 0.9rem; }

/* Visual cards in hero */
.slide-visual { display: flex; align-items: center; justify-content: center; }
.visual-cards { position: relative; width: 100%; max-width: 440px; }
.visual-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 20px;
  text-align: center;
  transition: transform 0.4s ease;
}
.visual-card:hover { transform: translateY(-6px); }
.vc-1 { margin-bottom: -20px; transform: rotate(-3deg); }
.vc-2 { transform: rotate(3deg) translateX(20px); }
.visual-card img {
  width: 100%; max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.3));
  margin: 0 auto 12px;
  border-radius: var(--r);
}
.vc-label strong { font-family: var(--font-p); font-size: 1.2rem; color: var(--gold); display: block; }
.vc-label span { font-size: 0.75rem; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 0.5px; }

/* Hero Controls */
.hero-controls {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 16px; z-index: 10;
}
.hero-arrow {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  color: var(--white); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--tr);
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.hero-dots { display: flex; gap: 8px; }
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none; transition: all var(--tr); cursor: pointer;
}
.hero-dot.active { background: var(--gold); transform: scale(1.3); }

/* Scroll Down */
.scroll-down {
  position: absolute; bottom: 70px; right: 30px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.9rem;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 10;
}
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* === TICKER === */
.ticker-wrap {
  background: linear-gradient(90deg, var(--dark) 0%, var(--dark-2) 100%);
  overflow: hidden; padding: 12px 0;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid rgba(255,255,255,.05);
}
.ticker-track {
  display: flex; gap: 0;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span {
  padding: 0 36px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px;
  color: rgba(255,255,255,.85);
  border-right: 1px solid rgba(255,255,255,.15);
  flex-shrink: 0;
}
.ticker-track span i { color: var(--gold); margin-right: 2px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === CATEGORIES SECTION === */
.section-categories { background: var(--off-white); padding: 70px 0 40px; }
.cat-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 32px; }
.cat-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-size: 0.875rem; font-weight: 600;
  color: var(--gray-1);
  background: var(--white);
  border: 2px solid var(--gray-2);
  transition: all var(--tr);
}
.cat-btn i { font-size: 0.85rem; }
.cat-btn:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.cat-btn.active { background: var(--red); border-color: var(--red); color: var(--white); box-shadow: 0 4px 16px rgba(200,0,26,.3); }

/* === PRODUCTS SECTION === */
.section-products { background: var(--off-white); padding: 20px 0 80px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.product-card:hover::before { transform: scaleX(1); }

/* Card reveal animation */
.product-card { opacity: 0; transform: translateY(30px); transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.35s ease; }
.product-card.revealed { opacity: 1; transform: translateY(0); }
.product-card.revealed:hover { transform: translateY(-8px); }

/* Filter hide animation */
.product-card.hiding { opacity: 0; transform: scale(0.95); pointer-events: none; }

/* Image */
.card-img-wrap {
  position: relative;
  background: var(--gray-3);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: var(--r) var(--r) 0 0;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.45s ease;
  border-radius: var(--r) var(--r) 0 0;
}
.product-card:hover .card-img-wrap img { transform: scale(1.07); }

/* Badges */
.card-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 11px; border-radius: var(--r-full);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  z-index: 1;
}
.badge-red { background: var(--red); color: var(--white); }
.badge-gold { background: var(--gold); color: var(--dark); }
.badge-dark { background: var(--dark); color: var(--white); }

/* Quick actions (view / favorite / share) */
.card-quick-actions {
  position: absolute; top: 10px; right: 10px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 1;
}
.quick-view, .fav-btn, .share-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--dark);
  box-shadow: var(--sh-sm);
  opacity: 0; transform: scale(0.7) rotate(-10deg);
  transition: all 0.25s ease;
}
.product-card:hover .quick-view,
.product-card:hover .fav-btn,
.product-card:hover .share-btn { opacity: 1; transform: scale(1) rotate(0); }
.quick-view:hover, .share-btn:hover { background: var(--red); color: var(--white); }
.fav-btn:hover { background: #E8496B; color: var(--white); }
.fav-btn.active { opacity: 1; color: #E8496B; }
.fav-btn.active i { font-weight: 900; }

/* Card Body */
.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.card-cat-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 6px;
}
.card-name {
  font-size: 0.92rem; font-weight: 600; color: #1A1A1A;
  line-height: 1.45; margin-bottom: 10px; flex: 1;
}
.card-price {
  margin-bottom: 14px;
}
.price-prefix { font-size: 0.72rem; color: var(--gray-1); display: block; margin-bottom: 2px; }
.price-value { font-family: var(--font-p); font-size: 1.45rem; font-weight: 700; color: var(--red); }
.card-actions { display: flex; gap: 8px; }
.card-actions .btn { flex: 1; font-size: 0.76rem; padding: 10px 10px; }
.btn-cart { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-cart:hover { background: var(--dark-2); transform: translateY(-2px); }

/* No Results */
.no-results {
  text-align: center; padding: 80px 20px;
  color: var(--gray-1);
}
.no-results i { font-size: 4rem; margin-bottom: 20px; opacity: 0.3; }
.no-results h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--dark); }
.no-results p { margin-bottom: 24px; }

/* === FEATURES SECTION === */
.section-features { background: var(--white); padding: 90px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.feature-card {
  text-align: center; padding: 36px 28px;
  border-radius: var(--r);
  border: 2px solid var(--gray-3);
  transition: all 0.35s ease;
}
.feature-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(200,0,26,.1);
  transform: translateY(-6px);
}
.feature-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--white); font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(200,0,26,.3);
  transition: transform 0.35s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(5deg); }
.feature-card h3 { font-family: var(--font-d); font-size: 1.25rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.feature-card p { font-size: 0.9rem; color: var(--gray-1); line-height: 1.65; }

/* === CONTACT SECTION === */
.section-contact { background: var(--dark); padding: 90px 0; }
.section-contact .section-eyebrow { color: var(--gold); }
.section-contact .section-title { color: var(--white); }
.section-contact .section-desc { color: rgba(255,255,255,.65); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px;
}
.ci-icon {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
}
.ci-text h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.ci-text p { color: rgba(255,255,255,.85); font-size: 0.95rem; line-height: 1.65; }
.ci-text a { color: var(--gold); }
.ci-text a:hover { text-decoration: underline; }

.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.social-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--r-sm);
  font-size: 0.85rem; font-weight: 600;
  transition: all var(--tr);
  border: 2px solid transparent;
}
.sl-fb { background: #1877F2; color: var(--white); }
.sl-fb:hover { background: #0e67dc; transform: translateY(-2px); }
.sl-wa { background: var(--wa); color: var(--white); }
.sl-wa:hover { background: var(--wa-dark); transform: translateY(-2px); }
.sl-tk { background: #1A1A1A; color: var(--white); border-color: rgba(255,255,255,.15); }
.sl-tk:hover { background: #333; transform: translateY(-2px); }

/* CTA Card */
.cta-card {
  background: rgba(255,255,255,.05); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 44px 36px;
  text-align: center;
}
.cta-icon {
  font-size: 3rem; color: var(--wa);
  margin-bottom: 20px;
  display: block;
  animation: waFloat 3s ease-in-out infinite;
}
@keyframes waFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-6px) scale(1.05); } }
.cta-card h3 { font-family: var(--font-d); font-size: 1.7rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-card p { color: rgba(255,255,255,.7); font-size: 0.95rem; margin-bottom: 28px; line-height: 1.65; }
.cta-trust { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.cta-trust span { font-size: 0.78rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 6px; }
.cta-trust i { color: var(--wa); }

/* === FOOTER === */
.footer-top { background: #110602; padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo i { font-size: 1.8rem; color: var(--gold); }
.footer-logo strong { font-family: var(--font-d); font-size: 1.3rem; font-weight: 900; letter-spacing: 1.5px; color: var(--white); display: block; line-height: 1; }
.footer-logo span { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.45); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 0.9rem;
  transition: all var(--tr);
}
.footer-social a:hover { background: var(--red); color: var(--white); transform: translateY(-3px); }

.footer-col h4 { font-family: var(--font-d); font-size: 1rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 8px; transition: all var(--tr); }
.footer-col ul a i { font-size: 0.6rem; color: var(--red); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,.55); margin-bottom: 12px; }
.footer-contact-list i { color: var(--gold); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.55); }
.footer-contact-list a:hover { color: var(--gold); }

.footer-bottom {
  background: #0A0402;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: var(--gold); font-weight: 600; }
.footer-bottom a:hover { text-decoration: underline; }

/* === CART DRAWER === */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.overlay.active { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 380px; max-width: 100vw;
  background: var(--white);
  z-index: 1200;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 48px rgba(0,0,0,.2);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-2);
  flex-shrink: 0;
  background: var(--dark); color: var(--white);
}
.cart-head h3 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.cart-head h3 i { color: var(--gold); }
.cart-close { color: rgba(255,255,255,.7); font-size: 1.1rem; padding: 6px; border-radius: var(--r-sm); transition: all var(--tr); }
.cart-close:hover { color: var(--white); background: rgba(255,255,255,.1); }

.cart-body { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--gray-1); }
.cart-empty i { font-size: 3.5rem; margin-bottom: 16px; opacity: 0.3; display: block; }
.cart-empty p { margin-bottom: 20px; font-size: 0.95rem; }

.cart-items { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px;
  background: var(--off-white);
  border-radius: var(--r-sm);
  border: 1px solid var(--gray-2);
}
.cart-item-img { width: 68px; height: 68px; border-radius: var(--r); overflow: hidden; background: var(--white); flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; border-radius: var(--r); }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.82rem; font-weight: 600; color: var(--dark); line-height: 1.4; margin-bottom: 6px; }
.cart-item-price { font-family: var(--font-p); font-size: 1rem; font-weight: 700; color: var(--red); }
.cart-item-actions { display: flex; align-items: center; gap: 6px; margin-top: 8px; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-2);
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--tr);
}
.qty-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.qty-value { font-size: 0.9rem; font-weight: 700; padding: 0 6px; min-width: 24px; text-align: center; }
.remove-item { margin-left: auto; color: var(--gray-1); font-size: 0.8rem; padding: 4px; border-radius: var(--r-sm); }
.remove-item:hover { color: var(--red); background: rgba(200,0,26,.08); }

.cart-foot { border-top: 1px solid var(--gray-2); padding: 20px 24px; flex-shrink: 0; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total-row span { font-size: 0.9rem; color: var(--gray-1); }
.cart-total-price { font-family: var(--font-p); font-size: 1.6rem; font-weight: 700; color: var(--red); }
.cart-foot .btn { margin-bottom: 10px; }
.cart-foot .btn:last-child { margin-bottom: 0; }

/* === PRODUCT MODAL === */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6); backdrop-filter: blur(6px);
  z-index: 1300;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.product-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 1400;
  background: var(--white);
  border-radius: var(--r-lg);
  width: 90%; max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--sh-lg);
  opacity: 0; pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.product-modal.active { opacity: 1; pointer-events: all; transform: translate(-50%, -50%) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gray-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--dark);
  z-index: 10; transition: all var(--tr);
}
.modal-close:hover { background: var(--red); color: var(--white); }

.modal-body { padding: 32px; }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.modal-img { background: var(--gray-3); border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 1; }
.modal-img img { width: 100%; height: 100%; object-fit: contain; padding: 24px; border-radius: var(--r-lg); }
.modal-info { }
.modal-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.modal-name { font-family: var(--font-d); font-size: 1.7rem; font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 12px; }
.modal-price { font-family: var(--font-p); font-size: 2rem; font-weight: 700; color: var(--red); margin-bottom: 16px; }
.modal-desc { font-size: 0.92rem; color: var(--gray-1); line-height: 1.7; margin-bottom: 20px; }
.modal-features { margin-bottom: 24px; }
.modal-features h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dark); margin-bottom: 12px; }
.modal-feature-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: #333; margin-bottom: 8px; }
.modal-feature-item i { color: var(--wa); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; }

/* === TOAST === */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--dark); color: var(--white);
  padding: 14px 24px; border-radius: var(--r-sm);
  font-size: 0.88rem; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--sh-lg); z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 360px; text-align: center;
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: #1a6b37; }
.toast.error { background: var(--red); }
.toast i { font-size: 1rem; flex-shrink: 0; }

/* === BACK TO TOP === */
.back-to-top {
  position: fixed; bottom: 90px; right: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--dark);
  color: var(--white); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md);
  opacity: 0; transform: translateY(20px);
  transition: all var(--tr);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--red); transform: translateY(-3px); }

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  z-index: 500;
  transition: all var(--tr);
}
.wa-float:hover { background: var(--wa-dark); transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.6); }
.wa-pulse {
  position: absolute;
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--wa);
  animation: waPulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
.wa-tooltip {
  position: absolute; right: 70px;
  background: var(--dark); color: var(--white);
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: 0.82rem; font-weight: 600;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: all var(--tr);
  box-shadow: var(--sh-sm);
}
.wa-tooltip::after {
  content: '';
  position: absolute; top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark); border-right: 0;
}
.wa-float:hover .wa-tooltip { opacity: 1; right: 74px; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  body { padding-top: 80px; }
  .header-topbar { display: none; }
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .hero-slide .container { grid-template-columns: 1fr; min-height: 90vh; padding-bottom: 100px; }
  .slide-visual { display: none; }
  .slide-title { font-size: clamp(2.5rem, 8vw, 4rem); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section-categories, .section-products { padding: 50px 0; }
  .section-features { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature-card { padding: 28px 22px; text-align: left; display: flex; align-items: flex-start; gap: 20px; }
  .feature-icon { margin: 0; flex-shrink: 0; width: 52px; height: 52px; font-size: 1.2rem; }
  .cat-filters { gap: 8px; }
  .cat-btn { padding: 8px 14px; font-size: 0.8rem; }
  .modal-grid { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .slide-actions { flex-direction: column; align-items: flex-start; }
  .slide-title { font-size: clamp(2rem, 10vw, 3rem); }
  .cart-drawer { width: 100vw; }
  .hero-controls { gap: 10px; }
  .product-modal { width: 96%; }
  .modal-body { padding: 20px; }
}

/* Accessibility */
*:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--r-sm);
  transition: opacity 0.2s ease;
}
.header-logo:hover .logo-img {
  opacity: 0.85;
}

/* Loader logo */
.loader-logo img {
  height: 86px;
  width: auto;
  border-radius: var(--r-sm);
}
/* ===== PRODUCTS TOOLBAR (contagem + ordenação) ===== */
.products-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.products-count { font-size: 0.85rem; color: var(--gray-1); font-weight: 500; }
.sort-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--gray-1);
}
.sort-label i { color: var(--red); }
.sort-label select {
  border: 1.5px solid var(--gray-3);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  font-size: 0.85rem;
  font-family: var(--font-b);
  color: var(--dark);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--tr);
}
.sort-label select:hover, .sort-label select:focus { border-color: var(--red); outline: none; }

/* ===== FAVORITES HEADER BUTTON ===== */
.fav-toggle i { transition: color 0.2s ease; }
.fav-toggle .cart-badge { background: #E8496B; }

/* ===== MODAL SECONDARY ACTIONS (favoritar / partilhar) ===== */
.modal-secondary-actions {
  display: flex; gap: 18px; margin-top: 16px;
  flex-wrap: wrap;
}
.btn-text {
  display: inline-flex; align-items: center; gap: 7px;
  background: none; border: none;
  font-size: 0.82rem; font-weight: 600; color: var(--gray-1);
  cursor: pointer; padding: 6px 0;
  transition: color var(--tr);
}
.btn-text:hover { color: var(--red); }
.btn-text.fav-btn.active { color: #E8496B; opacity: 1; transform: none; }
.btn-text i { font-size: 0.95rem; }
