/**
 * GORDINHO PERSONALIZADOS — CSS OFICIAL DO CATÁLOGO 2026
 * Reformulação completa da página inteira seguindo o padrão oficial da marca:
 * - Fundo limpo e moderno de e-commerce nas seções de catálogo, categorias, terceirizados e institucional
 * - Amarelo Ouro (#FAB818), Verde Floresta (#0F3822) e Verde Esmeralda (#22C55E)
 * - Faixa de benefícios e rodapé escuros com detalhes dourados conforme a referência
 */

/* ==========================================================================
   RESET & VARIÁVEIS VISUAIS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --yellow-amber: #FAB818;
  --yellow-hover: #E5A50E;
  --yellow-subtle: rgba(250, 184, 24, 0.12);
  --yellow-border: rgba(250, 184, 24, 0.35);
  --yellow-dark: #B45309;

  --green-emerald: #22C55E;
  --green-emerald-hover: #16A34A;

  --bg-deep: #06180E;
  --bg-darker: #0A2717;
  --bg-forest: #0F3822;

  --surface-white: #FFFFFF;
  --surface-light: #F8FAFC;
  --surface-muted: #F1F5F9;

  --border-light: #E2E8F0;
  --border-subtle: #F1F5F9;

  --text-dark: #0F172A;
  --text-body-dark: #334155;
  --text-muted-dark: #64748B;
  --text-white: #FFFFFF;
  --text-body-light: #D2E4D8;
  --text-muted-light: #8FB49C;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-card: 0 4px 14px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0 12px 28px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 8px 24px rgba(250, 184, 24, 0.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

body.catalogo-body {
  background-color: var(--surface-white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   HEADER MASTER (2 NÍVEIS OFICIAIS)
   ========================================================================== */
.header-master {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg-deep);
  border-bottom: 1px solid rgba(250, 184, 24, 0.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* NÍVEL 1: TOPO (LOGO + BUSCA CENTRAL + AÇÕES) */
.header-top {
  background: rgba(6, 24, 14, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.85rem 0;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo Oficial */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(250, 184, 24, 0.25) 0%, rgba(10, 39, 23, 0.9) 100%);
  border: 2px solid var(--yellow-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(250, 184, 24, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-logo:hover .brand-logo-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(250, 184, 24, 0.5);
}

.brand-mascot-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-title-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-subtitle {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--yellow-amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Barra de Busca Central */
.header-search-bar {
  flex: 1;
  max-width: 520px;
}

.header-search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.header-search-input {
  width: 100%;
  height: 44px;
  padding: 0 3.2rem 0 1.25rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #1E293B;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header-search-input::placeholder {
  color: #94A3B8;
  font-size: 0.88rem;
}

.header-search-input:focus {
  outline: none;
  border-color: var(--yellow-amber);
  box-shadow: 0 0 0 3px rgba(250, 184, 24, 0.35);
}

.header-search-btn {
  position: absolute;
  right: 4px;
  width: 36px;
  height: 36px;
  background: var(--yellow-amber);
  border: none;
  border-radius: var(--radius-full);
  color: #0A2717;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.header-search-btn:hover {
  background: var(--yellow-hover);
  transform: scale(1.05);
}

/* Ações (Conta & Carrinho) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.header-action-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: none;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.header-action-btn:hover {
  color: var(--yellow-amber);
  background: rgba(255, 255, 255, 0.05);
}

.action-icon {
  stroke-width: 2.2;
}

.action-label {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Carrinho com Badge Numérico */
.cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--yellow-amber);
  color: #06180E;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 19px;
  height: 19px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--bg-deep);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

/* NÍVEL 2: BARRA DE NAVEGAÇÃO PRINCIPAL */
.header-nav {
  background: #0A2717;
  padding: 0.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.header-nav-inner {
  overflow-x: auto;
  scrollbar-width: none;
}

.header-nav-inner::-webkit-scrollbar {
  display: none;
}

.nav-tabs-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

.nav-tab-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #D2E4D8;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.nav-tab-link:hover {
  color: #FFFFFF;
  background: rgba(250, 184, 24, 0.1);
}

.nav-tab-link.active {
  background: var(--yellow-amber);
  color: #0A2717;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(250, 184, 24, 0.35);
}

.nav-tab-link.active .tab-icon {
  fill: #0A2717;
}

.nav-whatsapp {
  margin-left: auto;
  color: #86EFAC;
}

.nav-whatsapp:hover {
  color: #FFFFFF;
  background: rgba(34, 197, 94, 0.18);
}

/* ==========================================================================
   HERO BANNER DE DESTAQUE (FACHADA DA LOJA)
   ========================================================================== */
.hero-showcase {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #06180E;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.75) contrast(1.1);
  transform: scale(1.02);
  transition: transform 10s ease;
}

.hero-showcase:hover .hero-bg-layer {
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 24, 14, 0.95) 0%,
    rgba(6, 24, 14, 0.82) 40%,
    rgba(6, 24, 14, 0.45) 75%,
    rgba(6, 24, 14, 0.8) 100%
  );
}

.hero-content-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  width: 100%;
}

.hero-text-block {
  max-width: 580px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.headline-gold {
  color: var(--yellow-amber);
  text-shadow: 0 2px 14px rgba(250, 184, 24, 0.35);
}

.hero-description {
  font-size: 1.15rem;
  font-weight: 500;
  color: #F1F5F9;
  line-height: 1.5;
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.8rem;
  background: var(--yellow-amber);
  color: #0A2717;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 20px rgba(250, 184, 24, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta-button:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(250, 184, 24, 0.55);
}

.hero-cta-button svg {
  transition: transform 0.2s ease;
}

.hero-cta-button:hover svg {
  transform: translateX(4px);
}

/* Selo de Energia da Direita */
.hero-callout-block {
  display: flex;
  justify-content: flex-end;
}

.hero-energy-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(10, 39, 23, 0.85);
  border: 2px solid var(--yellow-amber);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 25px rgba(250, 184, 24, 0.2);
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
}

.hero-energy-badge:hover {
  transform: rotate(0deg) scale(1.03);
}

.energy-sub {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.energy-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  text-transform: uppercase;
}

.energy-highlight {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--yellow-amber);
  line-height: 1;
  text-transform: uppercase;
  border-bottom: 3px solid var(--yellow-amber);
  padding-bottom: 4px;
}

/* ==========================================================================
   PADRÃO COMUM DE CABEÇALHO DAS SEÇÕES (CLEAN & OFICIAL)
   ========================================================================== */
.section-header-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.section-title-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-icon-badge {
  width: 46px;
  height: 46px;
  background: #FEF3C7;
  color: var(--yellow-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-titles {
  display: flex;
  flex-direction: column;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.15;
}

.title-underline-decor {
  width: 50px;
  height: 4px;
  background: var(--yellow-amber);
  border-radius: var(--radius-full);
  margin-top: 5px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  font-weight: 500;
  max-width: 540px;
  text-align: right;
  line-height: 1.45;
}

/* ==========================================================================
   SEÇÃO 1: PRODUTOS E SERVIÇOS (12 CATEGORIAS EM CARDS)
   ========================================================================== */
.section-categories {
  background: var(--surface-white);
  padding: 3.5rem 0 4rem;
}

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

.category-card {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-5px);
  border-color: var(--yellow-amber);
  box-shadow: var(--shadow-card-hover), 0 0 0 2px rgba(250, 184, 24, 0.3);
  outline: none;
}

.cat-card-media {
  position: relative;
  width: 100%;
  height: 145px;
  background: var(--surface-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.cat-card-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

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

.cat-card-footer {
  padding: 0.85rem 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: var(--surface-white);
}

.cat-card-name {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  color: #1E293B;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.category-card:hover .cat-card-name {
  color: var(--yellow-dark);
}

.cat-card-arrow {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #94A3B8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.category-card:hover .cat-card-arrow {
  transform: translateX(3px);
  color: var(--yellow-amber);
}

/* Card Especial "E muito mais!" */
.category-card.card-more .more-media {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
}

.more-dots-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.more-dots-icon span {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--yellow-dark);
  display: inline-block;
}

/* ==========================================================================
   SEÇÃO 2: TERCEIRIZADOS (4 CARDS INDUSTRIAIS)
   ========================================================================== */
.section-terceirizados {
  background: var(--surface-light);
  border-top: 1px solid var(--border-light);
  padding: 3.5rem 0 4rem;
}

.terceirizados-cards-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.15rem;
}

.terceirizado-card {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.terceirizado-card:hover,
.terceirizado-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--yellow-amber);
  box-shadow: var(--shadow-card-hover), 0 0 0 2px rgba(250, 184, 24, 0.35);
  outline: none;
}

.terc-card-media {
  position: relative;
  width: 100%;
  height: 190px;
  background: var(--surface-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.terc-card-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.terceirizado-card:hover .terc-card-media img {
  transform: scale(1.06);
}

.terc-card-footer {
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--surface-white);
}

.terc-card-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
}

.terceirizado-card:hover .terc-card-name {
  color: var(--yellow-dark);
}

.terc-card-arrow {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #94A3B8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.terceirizado-card:hover .terc-card-arrow {
  transform: translateX(4px);
  color: var(--yellow-amber);
}

/* ==========================================================================
   SEÇÃO 3: CATÁLOGO COMPLETO & ORÇAMENTO (REFORMULADO NO MESMO PADRÃO CLEAN)
   ========================================================================== */
.section-catalog-products {
  background: var(--surface-white);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0;
}

.products-toolbar {
  margin-bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.toolbar-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.toolbar-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
}

.toolbar-count {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--yellow-dark);
  background: #FEF3C7;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid #FDE68A;
}

/* Carrossel de Categorias no Padrão Clean */
.category-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.category-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.25rem 0;
  flex: 1;
}

.category-filters::-webkit-scrollbar {
  display: none;
}

.category-scroll-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
}

.category-scroll-btn:hover {
  background: var(--yellow-amber);
  border-color: var(--yellow-amber);
  color: #06180E;
}

.category-pill {
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid var(--border-light);
  background: var(--surface-white);
  color: #334155;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.category-pill:hover {
  color: var(--yellow-dark);
  border-color: var(--yellow-amber);
  background: #FFFBEB;
}

.category-pill.active {
  background: var(--yellow-amber);
  color: #0A2717;
  font-weight: 800;
  border-color: var(--yellow-amber);
  box-shadow: 0 4px 12px rgba(250, 184, 24, 0.35);
}

.pill-count {
  margin-left: 4px;
  opacity: 0.8;
  font-size: 0.78rem;
}

/* Grade de Produtos do Catálogo (Cards Claros Harmoniosos) */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.catalog-card {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow-amber);
  box-shadow: var(--shadow-card-hover), 0 0 0 2px rgba(250, 184, 24, 0.3);
}

.card-media {
  position: relative;
  width: 100%;
  height: 200px;
  background: var(--surface-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--yellow-amber);
  color: #0A2717;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-zoom-preview {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transition: all 0.2s ease;
}

.catalog-card:hover .btn-zoom-preview {
  opacity: 1;
}

.btn-zoom-preview:hover {
  color: var(--yellow-dark);
  border-color: var(--yellow-amber);
  transform: scale(1.1);
}

.card-body {
  padding: 1.2rem 1.25rem 0.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--surface-white);
}

.card-category-tag {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--yellow-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.card-spec {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.65rem;
  background: #F1F5F9;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.card-spec svg {
  color: #16A34A;
  flex-shrink: 0;
}

.card-desc {
  font-size: 0.84rem;
  color: var(--text-muted-dark);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.card-status-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #16A34A;
  margin-top: auto;
  padding-top: 0.65rem;
  border-top: 1px dashed var(--border-light);
}

.status-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  flex-shrink: 0;
  display: inline-block;
}

.card-footer {
  padding: 0.85rem 1.15rem;
  background: var(--surface-light);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* Stepper Moderno Formato Pill */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  background: var(--surface-white);
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-full);
  padding: 2px 4px;
  height: 40px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.qty-stepper:hover {
  border-color: var(--yellow-amber);
}

.qty-btn {
  background: transparent;
  border: none;
  color: #334155;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.qty-btn:hover {
  background: #FEF3C7;
  color: var(--yellow-dark);
  transform: scale(1.1);
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-value {
  width: 28px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

/* Botão de Adicionar ao Orçamento Ultra Refinado */
.btn-card-add {
  flex: 1;
  height: 40px;
  border: none;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #FAB818 0%, #F59E0B 100%);
  color: #0A2717;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.15rem;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(250, 184, 24, 0.35);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-card-add svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn-card-add:hover {
  background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
  box-shadow: 0 6px 18px rgba(250, 184, 24, 0.5);
  transform: translateY(-2px);
}

.btn-card-add:hover svg {
  transform: scale(1.15);
}

.btn-card-add:active {
  transform: translateY(0) scale(0.98);
}

.btn-card-add.is-added {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}

/* Estado Vazio & Load More */
.catalog-empty {
  text-align: center;
  padding: 4rem 1.5rem;
  background: var(--surface-light);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  color: var(--text-muted-dark);
}

.catalog-empty svg {
  color: var(--yellow-amber);
  margin-bottom: 1rem;
}

.btn-clear-search {
  margin-top: 1rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--yellow-amber);
  color: #06180E;
  font-family: var(--font-heading);
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.catalog-load-more-wrap {
  text-align: center;
  margin-top: 1rem;
}

.btn-load-more {
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-full);
  background: var(--surface-white);
  border: 2px solid var(--yellow-amber);
  color: #0A2717;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
}

.btn-load-more:hover {
  background: var(--yellow-amber);
  color: #06180E;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(250, 184, 24, 0.35);
}

/* ==========================================================================
   SEÇÃO 4: SOBRE NÓS & ESTRUTURA INDUSTRIAL (REFORMULADA NO MESMO PADRÃO OFICIAL)
   ========================================================================== */
.section-about-brand {
  background: var(--surface-light);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 4.5rem;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.about-feature-card {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.about-feature-card:hover,
.about-feature-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--yellow-amber);
  box-shadow: var(--shadow-card-hover), 0 0 0 2px rgba(250, 184, 24, 0.35);
  outline: none;
}

.about-card-badge-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.about-badge-gold {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: #0A2717;
  background: var(--yellow-amber);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.about-badge-sub {
  font-size: 0.74rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-card-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: #FEF3C7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.25s ease;
}

.about-feature-card:hover .about-card-icon-wrap {
  transform: scale(1.08);
}

.about-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.about-feature-card:hover .about-card-title {
  color: var(--yellow-dark);
}

.about-card-desc {
  font-size: 0.86rem;
  color: var(--text-body-dark);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1.25rem;
}

.about-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
}

.about-footer-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--yellow-dark);
}

.about-card-arrow {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #94A3B8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.about-feature-card:hover .about-card-arrow {
  transform: translateX(3px);
  color: var(--yellow-amber);
}

/* Banner Integrado de Localização & Contato */
.store-location-banner {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1.1fr auto;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.store-banner-col {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.store-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: #FEF3C7;
  color: var(--yellow-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.store-banner-text strong {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-dark);
  display: block;
  margin-bottom: 2px;
}

.store-banner-text span {
  font-size: 0.84rem;
  color: #64748B;
  line-height: 1.4;
}

.btn-store-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  background: #22C55E;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
  transition: all 0.25s ease;
}

.btn-store-whatsapp:hover {
  background: #16A34A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

/* ==========================================================================
   SEÇÃO 5: FAIXA DE BENEFÍCIOS (4 PILARES ESCUROS COM OURO)
   ========================================================================== */
.benefits-banner {
  background: #06180E;
  border-top: 1px solid rgba(250, 184, 24, 0.25);
  border-bottom: 1px solid rgba(250, 184, 24, 0.25);
  padding: 2.2rem 0;
}

.benefits-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(10, 39, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
}

.benefit-item:hover {
  background: rgba(15, 56, 34, 0.8);
  border-color: rgba(250, 184, 24, 0.35);
  transform: translateY(-2px);
}

.benefit-icon-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-text {
  display: flex;
  flex-direction: column;
}

.benefit-text strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--yellow-amber);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.benefit-text span {
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  text-transform: uppercase;
}

/* ==========================================================================
   SEÇÃO 6: RODAPÉ OFICIAL DA MARCA (ESCURO COM ASSINATURA)
   ========================================================================== */
.footer-master {
  background: #06180E;
  color: #D2E4D8;
}

.footer-signature-bar {
  background: #0A2717;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(250, 184, 24, 0.15);
}

.signature-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.signature-brand {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}

.signature-line-decor {
  width: 40px;
  height: 2px;
  background: var(--yellow-amber);
}

.signature-slogan {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--yellow-amber);
  letter-spacing: 0.08em;
}

.footer-body {
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
}

.footer-logo-title span {
  color: var(--yellow-amber);
}

.footer-bio {
  font-size: 0.9rem;
  color: #8FB49C;
  line-height: 1.6;
  max-width: 420px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.1rem;
}

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

.footer-nav-links a {
  color: #8FB49C;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav-links a:hover {
  color: var(--yellow-amber);
}

.footer-bottom-bar {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-gold-bar {
  width: 100%;
  height: 6px;
  background: var(--yellow-amber);
}

/* ==========================================================================
   CARRINHO / ORÇAMENTO DRAWER LATERAL
   ========================================================================== */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   CARRINHO / ORÇAMENTO DRAWER LATERAL (REDESIGN PREMIUM 2026)
   ========================================================================== */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 13, 8, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 450px;
  background: linear-gradient(180deg, #072013 0%, #031109 100%);
  border-left: 1px solid rgba(250, 184, 24, 0.25);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -12px 0 50px rgba(0, 0, 0, 0.85), inset 1px 0 0 rgba(255, 255, 255, 0.05);
}

.cart-drawer.open {
  transform: translateX(0);
}

/* Header */
.cart-drawer-header {
  padding: 0.85rem 1.15rem;
  background: rgba(4, 18, 10, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.cart-drawer-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cart-drawer-icon-bubble {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: radial-gradient(circle, rgba(250, 184, 24, 0.22) 0%, rgba(15, 56, 34, 0.5) 100%);
  border: 1px solid rgba(250, 184, 24, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-amber);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.cart-drawer-title-texts h2 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.cart-subtitle {
  display: block;
  font-size: 0.68rem;
  color: #8FB49C;
  font-weight: 500;
  margin-top: 1px;
}

.cart-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-total-badge {
  background: rgba(250, 184, 24, 0.12);
  border: 1px solid rgba(250, 184, 24, 0.35);
  color: var(--yellow-amber);
  font-size: 0.70rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.cart-close {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

/* Lista de Itens */
.cart-items {
  flex: 1;
  overflow-y: auto;
  list-style: none;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.cart-items::-webkit-scrollbar {
  width: 5px;
}

.cart-items::-webkit-scrollbar-track {
  background: transparent;
}

.cart-items::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
  background: rgba(250, 184, 24, 0.4);
}

/* Cart Item Card (Compacto & Elegante) */
.cart-item {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  transition: all 0.2s ease;
  position: relative;
}

.cart-item:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(250, 184, 24, 0.3);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.cart-item.just-added {
  border-color: var(--yellow-amber);
  box-shadow: 0 0 16px rgba(250, 184, 24, 0.35);
  background: rgba(250, 184, 24, 0.08);
}

.cart-item-photo {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: radial-gradient(circle, #0F3822 0%, #05190E 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 2px;
}

.cart-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.cart-item:hover .cart-item-photo img {
  transform: scale(1.06);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.cart-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.cart-item-cat {
  font-size: 0.60rem;
  color: var(--yellow-amber);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(250, 184, 24, 0.1);
  padding: 1px 5px;
  border-radius: 3px;
  border: 1px solid rgba(250, 184, 24, 0.2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 170px;
}

.cart-item-remove {
  width: 22px;
  height: 22px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #F87171;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.cart-item-remove:hover {
  background: #EF4444;
  color: #FFFFFF;
  border-color: #EF4444;
  transform: scale(1.08);
}

.cart-item-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.22;
  margin-bottom: 0.15rem;
  word-break: break-word;
}

.cart-item-spec {
  font-size: 0.70rem;
  color: #8FB49C;
  line-height: 1.25;
  margin-bottom: 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.cart-qty-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  height: 24px;
  padding: 0 3px;
  gap: 2px;
}

.cart-qty-pill .qty-btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: #E2E8F0;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.cart-qty-pill .qty-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

.cart-qty-pill .qty-value {
  min-width: 16px;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
  color: #FFFFFF;
}

.cart-item-status {
  font-size: 0.68rem;
  color: #86EFAC;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
}

/* Empty State */
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  color: #8FB49C;
}

.cart-empty[hidden] {
  display: none !important;
}

.cart-empty-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 184, 24, 0.12) 0%, rgba(15, 56, 34, 0.2) 100%);
  border: 1px solid rgba(250, 184, 24, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-amber);
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.cart-empty h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.cart-empty p {
  font-size: 0.78rem;
  line-height: 1.45;
  color: #8FB49C;
  max-width: 260px;
  margin-bottom: 1.2rem;
}

.btn-empty-explore {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 0.6rem 1.15rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-empty-explore:hover {
  background: var(--yellow-amber);
  color: #04140B;
  border-color: var(--yellow-amber);
  box-shadow: 0 4px 14px rgba(250, 184, 24, 0.35);
  transform: translateY(-1px);
}

/* Footer do Carrinho (Compacto) */
.cart-drawer-footer {
  padding: 0.75rem 1rem;
  background: rgba(4, 18, 10, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-summary-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.summary-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.summary-label {
  font-size: 0.74rem;
  color: #94A3B8;
  font-weight: 600;
}

.summary-count {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--yellow-amber);
}

.summary-card-row.summary-sub {
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 0.25rem;
  font-size: 0.66rem;
  color: #8FB49C;
}

.summary-channel {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #86EFAC;
}

.channel-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
}

.summary-location {
  color: #64748B;
  font-weight: 500;
}

.btn-checkout-whatsapp {
  width: 100%;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #04140B;
  border: none;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.3);
}

.btn-checkout-whatsapp:hover:not(:disabled) {
  background: linear-gradient(135deg, #2ED768 0%, #17B252 100%);
  color: #000000;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.45);
  transform: translateY(-2px);
}

.btn-checkout-whatsapp:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn-continue-catalog {
  width: 100%;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #E2E8F0;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-continue-catalog:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

.cart-clear-link {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 0.70rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  cursor: pointer;
  padding: 0.15rem;
  margin: 0 auto;
  transition: color 0.15s ease;
}

.cart-clear-link:hover {
  color: #F87171;
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.catalog-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.catalog-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  background: #0A2717;
  border: 1px solid rgba(250, 184, 24, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

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

.lightbox-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #FFFFFF;
}

.lightbox-close {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.8rem;
  cursor: pointer;
}

.lightbox-body {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   RESPONSIVIDADE (TABLET / MOBILE)
   ========================================================================== */
@media (max-width: 1200px) {
  .terceirizados-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .about-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .header-top-inner {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .header-search-bar {
    order: 3;
    max-width: 100%;
    width: 100%;
  }
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .terceirizados-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .store-location-banner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
  }
  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-content-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-callout-block {
    justify-content: flex-start;
  }
  .section-header-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .section-subtitle {
    text-align: left;
  }
}

@media (max-width: 580px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .terceirizados-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .about-cards-grid {
    grid-template-columns: 1fr;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .category-pill {
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
  }
  .benefits-inner {
    grid-template-columns: 1fr;
  }
  .hero-headline {
    font-size: 2.1rem;
  }
  .brand-title {
    font-size: 1.1rem;
  }
  .brand-subtitle {
    font-size: 0.65rem;
  }
  .action-label {
    display: none;
  }
  .header-action-btn {
    padding: 0.45rem;
  }
  .cart-drawer {
    max-width: 100%;
  }
  .cart-drawer-header {
    padding: 1rem 1.1rem;
  }
  .cart-items {
    padding: 0.9rem 1.1rem;
  }
  .cart-drawer-footer {
    padding: 1rem 1.1rem;
  }
}

/* ==========================================================================
   BARRA SELETORA DE PERFIL (CLIENTE FINAL vs TERCEIRIZAÇÃO)
   ========================================================================== */
.catalog-profile-bar {
  background: linear-gradient(180deg, #041009 0%, #06180E 100%);
  border-bottom: 1px solid rgba(250, 184, 24, 0.25);
  padding: 0.75rem 0;
  position: relative;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.catalog-profile-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.profile-info-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.profile-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  background: rgba(250, 184, 24, 0.15);
  border: 1px solid rgba(250, 184, 24, 0.35);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: #FAB818;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.profile-legend-text {
  font-size: 0.85rem;
  color: #94A3B8;
  font-weight: 500;
}

.profile-switch-tabs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.35rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-switch-tab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.15rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: #94A3B8;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-body);
}

.profile-switch-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #F8FAFC;
}

.profile-switch-tab .tab-profile-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.profile-switch-tab:hover .tab-profile-icon {
  transform: scale(1.15);
}

.profile-switch-tab .tab-profile-meta {
  display: flex;
  flex-direction: column;
}

.profile-switch-tab .tab-profile-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #E2E8F0;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.profile-switch-tab .tab-profile-sub {
  font-size: 0.72rem;
  color: #64748B;
  transition: color 0.2s ease;
}

/* Estado Ativo */
.profile-switch-tab.active {
  background: linear-gradient(135deg, #FAB818 0%, #E5A50E 100%);
  border-color: #FAB818;
  color: #06180E;
  box-shadow: 0 4px 18px rgba(250, 184, 24, 0.35);
  transform: translateY(-1px);
}

.profile-switch-tab.active .tab-profile-title {
  color: #06180E;
}

.profile-switch-tab.active .tab-profile-sub {
  color: #332100;
  font-weight: 600;
}

/* Banner de Ponte para Terceirizados no modo Cliente */
.b2b-invite-banner {
  background: linear-gradient(135deg, rgba(6, 24, 14, 0.92) 0%, rgba(15, 56, 34, 0.88) 100%);
  border: 1px dashed rgba(250, 184, 24, 0.45);
  border-radius: 16px;
  padding: 1.25rem 1.75rem;
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.b2b-invite-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.b2b-invite-icon {
  font-size: 1.8rem;
}

.b2b-invite-text strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #FFFFFF;
  display: block;
}

.b2b-invite-text span {
  font-size: 0.82rem;
  color: #CBD5E1;
}

.btn-switch-to-b2b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: #FAB818;
  color: #06180E;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(250, 184, 24, 0.3);
  transition: all 0.2s ease;
}

.btn-switch-to-b2b:hover {
  background: #E5A50E;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .catalog-profile-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .profile-switch-tabs {
    flex-direction: column;
    gap: 0.4rem;
  }
  .profile-switch-tab {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ==========================================================================
   MODAL DE EXPANSÃO DO CARD (DETALHES DO PRODUTO)
   ========================================================================== */
.product-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 24, 14, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-modal-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(250, 184, 24, 0.4);
  border-radius: 20px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.2);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.75rem;
  transform: scale(0.93) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  color: #475569;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.product-modal-close:hover {
  background: #E2E8F0;
  color: #0F172A;
  transform: scale(1.08);
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.product-modal-media {
  position: relative;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  height: 100%;
}

.product-modal-img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.product-modal-img:hover {
  transform: scale(1.04);
}

.product-modal-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--yellow-amber);
  color: #0A2717;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.product-modal-info {
  display: flex;
  flex-direction: column;
}

.product-modal-cat-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: #D97706;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.product-modal-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.product-modal-spec-block {
  background: #F1F5F9;
  border-left: 3.5px solid #16A34A;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.product-modal-spec-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #16A34A;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.product-modal-spec {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.4;
  margin: 0;
}

.product-modal-desc-block {
  margin-bottom: 1rem;
}

.product-modal-desc-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #64748B;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.product-modal-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

.product-modal-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #16A34A;
  background: #DCFCE7;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  width: fit-content;
}

.product-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #E2E8F0;
}

.product-modal-qty-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.product-modal-qty-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
}

.modal-qty-stepper {
  height: 42px;
}

.product-modal-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-modal-add-cart {
  flex: 1.2;
  min-width: 200px;
  height: 46px;
  border: none;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #FAB818 0%, #E5A50E 100%);
  color: #0A2717;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(250, 184, 24, 0.35);
  transition: all 0.2s ease;
}

.btn-modal-add-cart:hover {
  background: linear-gradient(135deg, #FFC533 0%, #F5B017 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(250, 184, 24, 0.45);
}

.btn-modal-add-cart.is-added {
  background: #16A34A;
  color: #FFFFFF;
}

.btn-modal-whatsapp {
  flex: 1;
  min-width: 180px;
  height: 46px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
}

.btn-modal-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .product-modal-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .product-modal-media {
    min-height: 220px;
  }
  .product-modal-card {
    padding: 1.25rem;
    max-height: 94vh;
  }
  .product-modal-btns {
    flex-direction: column;
  }
  .btn-modal-add-cart,
  .btn-modal-whatsapp {
    width: 100%;
  }
}

