/* =============================================
   DEPÓSITO CRISTIANO — ESTILOS GLOBAIS
   Paleta: Branco como superfície única
           Azul #2D3A4A para texto e contraste
           Amarelo #F5B800 como acento
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', 'Segoe UI', Arial, sans-serif; background: #ffffff; color: #2D3A4A; line-height: 1.6;
  -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
img { pointer-events: none; -webkit-user-drag: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* --- Variáveis --- */
:root {
  --azul:        #2D3A4A;
  --azul-deep:   #1E2A38;
  --azul-suave:  #EEF2F6;
  --amarelo:     #F5B800;
  --amarelo-hov: #D9A200;
  --amarelo-bg:  #FFFBEB;
  --branco:      #ffffff;
  --cinza-bg:    #F8F9FB;
  --cinza-borda: #DDE3EB;
  --cinza-leve:  #F1F4F7;
  --texto:       #2D3A4A;
  --texto-suave: #5A6A7A;
  --vermelho:    #DC2626;

  --grid: linear-gradient(rgba(45,58,74,0.05) 1px, transparent 1px),
          linear-gradient(90deg, rgba(45,58,74,0.05) 1px, transparent 1px);
  --grid-sz: 36px 36px;

  --sombra:    0 1px 4px rgba(45,58,74,0.08), 0 1px 2px rgba(45,58,74,0.05);
  --sombra-md: 0 4px 16px rgba(45,58,74,0.11);
  --sombra-lg: 0 8px 32px rgba(45,58,74,0.15);

  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --ease:      0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow: 0.38s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1280px;

  /* compat */
  --escuro:         #2D3A4A;
  --escuro-deep:    #1E2A38;
  --claro:          #ffffff;
  --claro-off:      #F8F9FB;
  --acento:         #F5B800;
  --acento-hover:   #D9A200;
  --acento-suave:   #FFFBEB;
  --borda:          #DDE3EB;
  --borda-suave:    #F1F4F7;
  --texto-inv:      #2D3A4A;
  --texto-inv-suave:#5A6A7A;
  --sombra-hover:   var(--sombra-lg);
  --cinza-escuro:   #5A6A7A;
  --amarelo-suave:  #FFFBEB;
  --amarelo-hover:  #D9A200;
  --azul-claro:     #EEF2F6;
}

/* --- Tipografia --- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--azul); }
h1 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
h4 { font-size: 0.95rem; }
p  { color: var(--texto-suave); }

/* --- Container --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* =============================================
   BARRA SUPERIOR
   ============================================= */
.topbar {
  background: var(--azul);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  padding: 7px 0;
  border-bottom: 2px solid var(--amarelo);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.topbar a { color: rgba(255,255,255,0.7); transition: color var(--ease); }
.topbar a:hover { color: var(--amarelo); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-item { display: flex; align-items: center; gap: 5px; }
.topbar-item svg { width: 13px; height: 13px; }

/* =============================================
   HEADER
   ============================================= */
.header {
  background: var(--branco);
  border-bottom: 1px solid var(--cinza-borda);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--sombra);
}
.header-main { display: flex; align-items: center; gap: 24px; padding: 13px 0; }
.logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 50px; width: auto; max-width: 180px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-name   { font-size: 1rem; font-weight: 800; color: var(--azul); letter-spacing: 0.02em; line-height: 1; }
.logo-slogan { font-size: 0.63rem; color: var(--texto-suave); letter-spacing: 0.02em; }

/* Busca */
.search-bar {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1.5px solid var(--cinza-borda);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease);
  background: var(--cinza-bg);
}
.search-bar:focus-within { border-color: var(--amarelo); background: var(--branco); }
.search-input {
  flex: 1; border: none; outline: none;
  padding: 10px 14px; font-size: 0.88rem;
  background: transparent; color: var(--texto);
}
.search-input::placeholder { color: #9CA3AF; }
.search-btn {
  background: var(--amarelo); border: none;
  padding: 10px 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease);
}
.search-btn:hover { background: var(--amarelo-hov); }
.search-btn svg { width: 18px; height: 18px; color: var(--azul); }

/* Ações */
.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.header-action-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 6px 10px; border-radius: var(--radius);
  color: var(--azul); font-size: 0.7rem; font-weight: 600;
  transition: background var(--ease), color var(--ease);
  position: relative;
}
.header-action-btn:hover { background: var(--cinza-bg); color: var(--amarelo-hov); }
.header-action-btn svg { width: 22px; height: 22px; }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: #DC2626; color: #fff;
  font-size: 0.6rem; font-weight: 800;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--branco);
  pointer-events: none;
}

/* Nav */
.header-nav { background: var(--azul-suave); border-top: 1px solid var(--cinza-borda); }
.header-nav .container { display: flex; align-items: center; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 18px; color: var(--texto-suave);
  font-size: 0.82rem; font-weight: 500; white-space: nowrap;
  transition: color var(--ease), background var(--ease);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px; background: var(--amarelo);
  transition: width var(--ease-slow), left var(--ease-slow);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; left: 0; }
.nav-link:hover, .nav-link.active { color: var(--azul); background: rgba(45,58,74,0.04); }
.nav-link svg { width: 14px; height: 14px; }
.nav-link--produtos { font-weight: 700; color: var(--azul); gap: 8px; }
.nav-link--produtos svg { width: 16px; height: 16px; }

/* Dropdown */
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--branco); border: 1px solid var(--cinza-borda);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 220px; box-shadow: var(--sombra-md); z-index: 999; padding: 8px 0;
}
.nav-item:hover .dropdown-menu { display: block; }
.dropdown-item {
  display: block; padding: 9px 20px;
  color: var(--texto-suave); font-size: 0.85rem;
  transition: background var(--ease), color var(--ease);
}
.dropdown-item:hover { background: var(--cinza-bg); color: var(--amarelo-hov); }

/* Mobile toggle */
.mobile-menu-btn { display: none; padding: 8px; color: var(--azul); }
.mobile-menu-btn svg { width: 26px; height: 26px; }

/* =============================================
   HERO
   ============================================= */
.hero { position: relative; overflow: hidden; background: var(--azul); }
.hero-slider { display: flex; transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1); }
.hero-slide {
  min-width: 100%; height: 440px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(30,42,56,0.92) 0%, rgba(30,42,56,0.55) 55%, rgba(30,42,56,0.15) 100%);
  display: flex; align-items: center;
}
.hero-content { padding: 0 64px; color: #fff; max-width: 580px; }
.hero-content .badge {
  display: inline-block; background: var(--amarelo); color: var(--azul);
  font-size: 0.72rem; font-weight: 700; padding: 4px 12px;
  border-radius: 20px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.hero-content h1 { font-size: clamp(2rem, 5vw, 3.4rem); color: #fff; margin-bottom: 14px; letter-spacing: -0.02em; line-height: 1.08; text-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.hero-content p  { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.hero-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amarelo); color: var(--azul);
  font-weight: 700; font-size: 0.95rem;
  padding: 13px 28px; border-radius: var(--radius);
  transition: background var(--ease), transform var(--ease);
}
.hero-btn:hover { background: var(--amarelo-hov); transform: translateY(-1px); }
.hero-btn svg { width: 18px; height: 18px; }
.hero-btn--wpp { background: #25D366; color: #fff; }
.hero-btn--wpp:hover { background: #1ebe5d; color: #fff; }
.hero-content .badge--wpp { background: #25D366; color: #fff; }

.hero-prev, .hero-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); backdrop-filter: blur(4px);
  color: #fff; width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background var(--ease);
}
.hero-prev:hover, .hero-next:hover { background: var(--amarelo); color: var(--azul); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-prev svg, .hero-next svg { width: 20px; height: 20px; }
.hero-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); transition: background var(--ease), transform var(--ease); }
.hero-dot.active { background: var(--amarelo); transform: scale(1.3); }

/* =============================================
   SEÇÕES GENÉRICAS
   ============================================= */
.section    { padding: 64px 0; }
.section-sm { padding: 36px 0; }

.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 36px; gap: 16px; flex-wrap: wrap;
}
.section-eyebrow {
  display: block; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.22em; color: var(--amarelo-hov);
  text-transform: uppercase; margin-bottom: 7px;
}
.section-heading-large {
  font-size: clamp(1.35rem, 3vw, 1.9rem); font-weight: 800;
  color: var(--azul); letter-spacing: -0.02em; line-height: 1.1;
  text-transform: uppercase;
}
.section-heading-large--amarelo {
  color: var(--amarelo-hov);
}
.section-link {
  font-size: 0.82rem; font-weight: 600; color: var(--texto-suave);
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
  transition: color var(--ease);
}
.section-link:hover { color: var(--amarelo-hov); }
.section-link svg { width: 15px; height: 15px; }

/* Fundo quadriculado — todas as seções brancas */
.section--grid-bg,
.features-section,
.categories-section,
.banner-strip,
.reviews-section,
.contact-section {
  background-color: var(--branco);
  background-image: var(--grid);
  background-size: var(--grid-sz);
}

/* =============================================
   DIFERENCIAIS
   ============================================= */
.features-section {
  border-top: 3px solid var(--amarelo);
}
.features-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 0; }
.feature-item {
  display: flex; align-items: center; gap: 18px;
  padding: 32px 48px;
  border-right: 1px solid var(--cinza-borda);
  flex: 1 1 0;
  transition: background var(--ease);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(245,184,0,0.04); }
.feature-icon {
  width: 56px; height: 56px; background: var(--azul);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--ease-slow), transform var(--ease-slow);
  box-shadow: 0 4px 14px rgba(45,58,74,0.18);
}
.feature-icon svg { color: var(--amarelo) !important; }
.feature-item:hover .feature-icon { background: var(--amarelo); transform: scale(1.08); box-shadow: 0 6px 18px rgba(245,184,0,0.3); }
.feature-item:hover .feature-icon svg { color: var(--azul) !important; }
.feature-text h4 { font-size: 1rem; font-weight: 800; color: var(--azul); margin-bottom: 4px; letter-spacing: -0.01em; }
.feature-text p  { font-size: 0.82rem; color: var(--texto-suave); line-height: 1.4; }

/* =============================================
   CATEGORIAS — CARROSSEL
   ============================================= */
.categories-section {
  padding: 60px 0;
}
.cat-carousel-wrap { position: relative; display: flex; align-items: center; gap: 8px; }
.cat-carousel-clip { flex: 1; overflow: hidden; }
.cat-carousel {
  display: flex; gap: 12px; flex: 1;
}
.cat-prev, .cat-next {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: var(--cinza-leve); color: var(--azul); border: 1px solid var(--cinza-borda);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), border-color var(--ease), color var(--ease); z-index: 2;
}
.cat-prev:hover, .cat-next:hover { background: var(--amarelo); color: var(--azul); border-color: var(--amarelo); }
.cat-prev svg, .cat-next svg { width: 18px; height: 18px; }

.cat-item {
  flex-shrink: 0; display: flex; flex-direction: column;
  align-items: center; gap: 10px; cursor: pointer;
  text-align: center; padding: 6px 0;
  transition: opacity var(--ease);
}
.cat-icon-box {
  width: 76px; height: 76px;
  background: var(--azul); border: 1.5px solid var(--azul);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  transition: background var(--ease-slow), border-color var(--ease-slow), transform var(--ease-slow);
  box-shadow: 0 4px 12px rgba(45,58,74,0.2);
}
.cat-item:hover .cat-icon-box {
  background: var(--amarelo); border-color: var(--amarelo); transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(245,184,0,0.35);
}
.cat-icon-box svg { width: 32px; height: 32px; stroke: rgba(255,255,255,0.9); transition: stroke var(--ease-slow); }
.cat-item:hover .cat-icon-box svg { stroke: var(--azul); }
.cat-item--ver-tudo .cat-icon-box { background: var(--azul); border-color: var(--azul); }
.cat-item--ver-tudo:hover .cat-icon-box { background: var(--amarelo); border-color: var(--amarelo); }
.cat-label {
  font-size: 0.7rem; font-weight: 600;
  color: var(--texto-suave); line-height: 1.35;
  transition: color var(--ease);
}
.cat-item:hover .cat-label { color: var(--amarelo-hov); }

/* =============================================
   CARDS DE PRODUTO
   ============================================= */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.product-card {
  background: var(--branco); border: 1.5px solid var(--cinza-borda);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow var(--ease-slow), transform var(--ease-slow), border-color var(--ease-slow);
  display: flex; flex-direction: column; box-shadow: var(--sombra);
}
.product-card:hover { box-shadow: var(--sombra-lg); transform: translateY(-3px); border-color: var(--amarelo); }

.product-card--destaque {
  border-color: var(--amarelo);
  box-shadow: 0 0 0 1.5px var(--amarelo), var(--sombra-md);
  background: linear-gradient(175deg, #FFFBEB 0%, var(--branco) 60%);
}
.product-card--destaque::before {
  content: '⭐ Destaque';
  display: block;
  background: var(--amarelo);
  color: var(--azul);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
  padding: 4px 0;
}
.product-card--destaque:hover { box-shadow: 0 0 0 2px var(--amarelo-hov), var(--sombra-lg); border-color: var(--amarelo-hov); }

/* =============================================
   CARROSSEL PRODUTOS EM DESTAQUE
   ============================================= */
.featured-carousel-wrap { position: relative; display: flex; align-items: center; gap: 8px; }
.featured-carousel-clip { flex: 1; overflow: hidden; }
.featured-carousel-card {
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(175deg, #FFFBEB 0%, var(--branco) 55%);
  border: 2px solid var(--amarelo);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 0 0 1px #F5B80033, var(--sombra-md);
  transition: box-shadow var(--ease-slow), transform var(--ease-slow);
  display: flex; flex-direction: column;
}
.featured-carousel-card:hover { box-shadow: 0 0 0 2px var(--amarelo), var(--sombra-lg); transform: translateY(-3px); }
.featured-badge-top {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  background: var(--amarelo);
  color: var(--azul);
  font-size: 0.62rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 0;
}

.product-img-wrap { position: relative; background: var(--cinza-bg); aspect-ratio: 1/1; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform var(--ease); }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--cinza-borda); }
.product-promo-badge {
  position: absolute; top: 10px; left: 10px;
  background: #DC2626; color: #fff;
  font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 8px; border-radius: 4px;
  pointer-events: none;
}
.product-price-old {
  display: block;
  font-size: 0.78rem; font-weight: 500;
  color: var(--texto-suave);
  text-decoration: line-through;
  margin-bottom: 1px;
}
.product-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.product-brand { font-size: 0.7rem; color: var(--texto-suave); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.product-name  { font-size: 0.88rem; font-weight: 600; color: var(--azul); line-height: 1.4; flex: 1; }
.product-price { font-size: 1.25rem; font-weight: 800; color: var(--azul); }
.product-price span { font-size: 0.75rem; font-weight: 400; color: var(--texto-suave); }
.product-footer { padding: 0 14px 14px; display: flex; gap: 8px; }
.btn-cart {
  flex: 1; background: var(--amarelo); color: var(--azul); font-weight: 700;
  font-size: 0.82rem; padding: 9px 12px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background var(--ease);
}
.btn-cart:hover { background: var(--amarelo-hov); }
.btn-cart svg { width: 16px; height: 16px; }
.btn-whatsapp-card {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: #22C55E; color: #fff;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease);
}
.btn-whatsapp-card:hover { background: #16A34A; }
.btn-whatsapp-card svg { width: 18px; height: 18px; }

/* =============================================
   BANNER INTERMEDIÁRIO
   ============================================= */
.banner-strip {
  padding: 60px 0;
}
.banner-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.banner-strip h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 800; color: var(--azul); }
.banner-strip h2 span { color: var(--amarelo-hov); }
.banner-strip p { color: var(--texto-suave); margin-top: 8px; font-size: 0.92rem; }
.banner-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amarelo); color: var(--azul); font-weight: 700;
  padding: 14px 30px; border-radius: var(--radius); font-size: 0.95rem;
  white-space: nowrap; transition: background var(--ease), transform var(--ease);
}
.banner-cta:hover { background: var(--amarelo-hov); transform: translateY(-1px); }
.banner-cta svg { width: 18px; height: 18px; }

/* =============================================
   AVALIAÇÕES
   ============================================= */
.reviews-section {
}
.reviews-carousel-wrap {
  display: flex; align-items: center; gap: 10px; margin-top: 32px;
}
.reviews-track-clip {
  flex: 1; overflow: hidden;
}
.reviews-track {
  display: flex; gap: 16px;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.reviews-track .review-card {
  flex-shrink: 0; box-sizing: border-box;
}
.reviews-nav-btn {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--cinza-leve); color: var(--azul); border: 1.5px solid var(--cinza-borda);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.reviews-nav-btn:hover:not(:disabled) { background: var(--amarelo); border-color: var(--amarelo); color: var(--azul); }
.reviews-nav-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.reviews-nav-btn svg { width: 18px; height: 18px; }
.reviews-hero-score {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 36px; flex-wrap: wrap;
}
.reviews-score-num   { font-size: 1.5rem; font-weight: 900; color: var(--azul); line-height: 1; }
.reviews-score-stars { color: var(--amarelo); font-size: 1.1rem; line-height: 1; }
.reviews-score-sep   { color: var(--cinza-borda); font-size: 1.2rem; line-height: 1; }
.reviews-score-text  { font-size: 0.95rem; color: var(--texto-suave); }
.reviews-score-text strong { color: var(--azul); font-weight: 700; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.review-card {
  background: var(--branco); border: 1.5px solid var(--cinza-borda);
  border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--sombra);
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--azul); color: var(--amarelo);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.88rem; flex-shrink: 0;
}
.review-info h4   { font-size: 0.88rem; color: var(--azul); font-weight: 700; }
.review-info span { font-size: 0.75rem; color: var(--texto-suave); }
.review-stars { color: var(--amarelo); font-size: 0.9rem; margin-bottom: 8px; }
.review-text  { font-size: 0.85rem; color: var(--texto-suave); line-height: 1.65; }
.review-google { display: flex; align-items: center; gap: 4px; margin-top: 12px; font-size: 0.72rem; color: var(--texto-suave); }
.review-google img { width: 14px; height: 14px; }
.review-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

/* Skeleton loader */
.review-skeleton {
  background: var(--branco); border: 1.5px solid var(--cinza-borda);
  border-radius: var(--radius-lg); padding: 22px;
  flex: 0 0 calc(25% - 12px); min-width: 240px;
}
.skeleton-line {
  background: linear-gradient(90deg, #e8eaed 25%, #f4f5f7 50%, #e8eaed 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
  border-radius: 4px; height: 12px; margin-bottom: 10px;
}
.skeleton-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(90deg, #e8eaed 25%, #f4f5f7 50%, #e8eaed 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
  flex-shrink: 0;
}
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Score geral de avaliações */
.reviews-score-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-bottom: 36px; flex-wrap: wrap;
}
.reviews-score-big {
  font-size: 3rem; font-weight: 900; color: var(--azul); line-height: 1;
}
.reviews-score-details { display: flex; flex-direction: column; gap: 4px; }
.reviews-score-stars-big { color: var(--amarelo); font-size: 1.3rem; line-height: 1; }
.reviews-score-count { font-size: 0.85rem; color: var(--texto-suave); }

/* Mensagem de erro */
.reviews-error {
  text-align: center; padding: 40px 20px;
  color: var(--texto-suave); font-size: 0.95rem;
}

/* =============================================
   CALCULADORA
   ============================================= */
.calculator-section { background: var(--branco); }
.calculator-wrapper { max-width: 780px; margin: 0 auto; background: var(--cinza-bg); border: 1.5px solid var(--cinza-borda); border-radius: var(--radius-lg); overflow: hidden; }
.calculator-header { background: var(--azul); padding: 24px 32px; color: #fff; display: flex; align-items: center; gap: 16px; }
.calculator-header-icon { width: 48px; height: 48px; background: rgba(245,184,0,0.18); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.calculator-header h3 { font-size: 1.1rem; margin-bottom: 4px; color: #fff; }
.calculator-header p  { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.calculator-body { padding: 28px 32px; }
.calc-examples { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.calc-example-btn { background: var(--branco); border: 1.5px solid var(--cinza-borda); border-radius: 20px; padding: 6px 14px; font-size: 0.78rem; color: var(--azul); font-weight: 500; transition: border-color var(--ease), background var(--ease); }
.calc-example-btn:hover { border-color: var(--amarelo); background: var(--amarelo-bg); }
.calc-input-wrap { position: relative; margin-bottom: 14px; }
.calc-textarea { width: 100%; border: 1.5px solid var(--cinza-borda); border-radius: var(--radius); padding: 14px 16px; font-size: 0.9rem; resize: vertical; min-height: 90px; transition: border-color var(--ease); background: var(--branco); color: var(--texto); }
.calc-textarea:focus { outline: none; border-color: var(--amarelo); }
.calc-textarea::placeholder { color: #9CA3AF; }
.calc-btn { width: 100%; background: var(--amarelo); color: var(--azul); font-weight: 700; font-size: 1rem; padding: 13px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; gap: 8px; transition: background var(--ease); }
.calc-btn:hover { background: var(--amarelo-hov); }
.calc-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.calc-btn svg { width: 20px; height: 20px; }
.calc-api-info { margin-top: 10px; font-size: 0.75rem; color: var(--texto-suave); text-align: center; display: flex; align-items: center; justify-content: center; gap: 4px; }
.calc-result { margin-top: 20px; }
.calc-result-header { background: var(--azul); color: #fff; padding: 14px 20px; border-radius: var(--radius) var(--radius) 0 0; display: flex; align-items: center; justify-content: space-between; }
.calc-result-header h4 { font-size: 0.95rem; color: #fff; }
.calc-result-body { background: var(--branco); border: 1.5px solid var(--cinza-borda); border-top: none; border-radius: 0 0 var(--radius) var(--radius); padding: 16px 20px; }
.calc-items-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.calc-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--cinza-borda); font-size: 0.85rem; }
.calc-item:last-child { border-bottom: none; }
.calc-item-name  { color: var(--texto-suave); }
.calc-item-price { font-weight: 700; color: var(--azul); }
.calc-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.1rem; padding: 12px 0 8px; color: var(--azul); border-top: 2px solid var(--cinza-borda); }
.calc-disclaimer { font-size: 0.72rem; color: var(--texto-suave); margin-top: 6px; }
.calc-whatsapp-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: #22C55E; color: #fff; font-weight: 700; font-size: 0.95rem; padding: 13px; border-radius: var(--radius); margin-top: 16px; transition: background var(--ease); width: 100%; }
.calc-whatsapp-btn:hover { background: #16A34A; }
.calc-whatsapp-btn svg { width: 20px; height: 20px; }
.calc-loading { text-align: center; padding: 30px; color: var(--texto-suave); font-size: 0.9rem; }
.calc-loading .spinner { width: 36px; height: 36px; border: 3px solid var(--cinza-borda); border-top-color: var(--amarelo); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 12px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================
   CONTATO
   ============================================= */
.contact-section {
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: 56px; align-items: start; }
.contact-info-clean { display: flex; flex-direction: column; gap: 28px; }
.contact-items-row { display: flex; flex-direction: column; gap: 20px; }
.contact-item-icon { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px; background: var(--azul);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--amarelo); }
.contact-item-icon h4  { font-size: 0.8rem; font-weight: 700; color: var(--azul); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-item-icon p, .contact-item-icon a { font-size: 0.88rem; color: var(--texto-suave); }
.contact-item-icon a:hover { color: var(--amarelo-hov); }
.contact-whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #22C55E; color: #fff; font-weight: 700;
  padding: 14px 24px; border-radius: var(--radius); font-size: 0.95rem;
  transition: background var(--ease), transform var(--ease);
}
.contact-whatsapp-btn:hover { background: #16A34A; transform: translateY(-1px); }
.contact-whatsapp-btn svg { width: 20px; height: 20px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sombra-md); border: 1.5px solid var(--cinza-borda); }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: none; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--azul);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
  border-top: 3px solid var(--amarelo);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo-img { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1) opacity(0.85); }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.social-btn:hover { background: var(--amarelo); color: var(--azul); border-color: var(--amarelo); }
.social-btn svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700; color: var(--amarelo);
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 18px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: color var(--ease), padding-left var(--ease); }
.footer-links a:hover { color: var(--amarelo); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--amarelo); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-contact-item a:hover { color: var(--amarelo); }
.footer-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.25); }
.footer-bottom a:hover { color: var(--amarelo); }

/* =============================================
   CARRINHO LATERAL
   ============================================= */
/* ---- Overlay ---- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 18, 30, 0.55);
  backdrop-filter: blur(2px);
  z-index: 2000; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

/* ---- Drawer ---- */
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100dvh;
  width: 420px; max-width: 100vw;
  background: var(--branco);
  z-index: 2001;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 48px rgba(45,58,74,0.18);
}
.cart-drawer.open { transform: translateX(0); }

/* ---- Header ---- */
.cart-drawer-header {
  padding: 18px 20px;
  background: var(--azul);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.cart-drawer-header h3 {
  font-size: 0.95rem; font-weight: 700;
  color: #fff; letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 8px;
}
.cart-drawer-header h3 svg { width: 18px; height: 18px; color: var(--amarelo); }
.cart-header-badge {
  background: var(--amarelo); color: var(--azul);
  font-size: 0.7rem; font-weight: 800;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cart-close-btn {
  width: 32px; height: 32px;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), color var(--ease);
}
.cart-close-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
.cart-close-btn svg { width: 18px; height: 18px; }

/* ---- Body ---- */
.cart-items {
  flex: 1; overflow-y: auto;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--cinza-borda) transparent;
}
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-thumb { background: var(--cinza-borda); border-radius: 4px; }

/* ---- Vazio ---- */
.cart-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  color: var(--texto-suave); font-size: 0.88rem; text-align: center;
  padding: 40px 24px;
}
.cart-empty svg { width: 52px; height: 52px; color: var(--cinza-borda); }
.cart-empty strong { color: var(--azul); font-size: 1rem; }

/* ---- Item ---- */
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 12px;
  border: 1.5px solid var(--cinza-borda);
  border-radius: var(--radius);
  background: var(--branco);
  transition: border-color var(--ease);
}
.cart-item:hover { border-color: var(--amarelo); }

.cart-item-thumb {
  width: 64px; height: 64px;
  border-radius: 8px;
  border: 1px solid var(--cinza-borda);
  background: var(--cinza-bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.cart-item-img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 6px;
}

.cart-item-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cart-item-name  { font-size: 0.8rem; font-weight: 600; color: var(--azul); line-height: 1.35; }
.cart-item-brand { font-size: 0.68rem; color: var(--texto-suave); text-transform: uppercase; letter-spacing: 0.05em; }
.cart-item-price { font-size: 0.95rem; font-weight: 800; color: var(--azul); margin-top: 4px; }

.cart-item-qty {
  display: flex; align-items: center; gap: 6px; margin-top: 6px;
}
.qty-btn {
  width: 28px; height: 28px;
  background: var(--cinza-leve);
  border: 1.5px solid var(--cinza-borda);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--azul); font-weight: 700;
  transition: background var(--ease), border-color var(--ease);
}
.qty-btn:hover { background: var(--amarelo); border-color: var(--amarelo); }
.qty-value {
  font-size: 0.88rem; font-weight: 700; color: var(--azul);
  min-width: 24px; text-align: center;
}
.cart-item-remove {
  margin-left: auto;
  width: 28px; height: 28px;
  color: var(--texto-suave);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), color var(--ease);
}
.cart-item-remove:hover { background: #FEE2E2; color: var(--vermelho); }
.cart-item-remove svg { width: 15px; height: 15px; }

/* ---- Footer ---- */
.cart-footer {
  padding: 14px 16px 20px;
  border-top: 1.5px solid var(--cinza-borda);
  background: var(--cinza-bg);
  flex-shrink: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.cart-subtotal-row {
  display: flex; align-items: center; justify-content: space-between;
}
.cart-subtotal-label { font-size: 0.8rem; color: var(--texto-suave); }
.cart-total {
  font-size: 1.25rem; font-weight: 900; color: var(--azul);
}
.cart-whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #22C55E; color: #fff;
  font-weight: 700; font-size: 0.95rem;
  padding: 14px; border-radius: var(--radius);
  width: 100%;
  transition: background var(--ease), transform var(--ease);
  box-shadow: 0 4px 14px rgba(34,197,94,0.35);
}
.cart-whatsapp-btn:hover { background: #16A34A; transform: translateY(-1px); }
.cart-whatsapp-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.cart-continue-btn {
  background: none; border: none;
  font-size: 0.8rem; color: var(--texto-suave);
  text-align: center; width: 100%;
  padding: 4px;
  cursor: pointer;
  transition: color var(--ease);
}
.cart-continue-btn:hover { color: var(--azul); }
.cart-whatsapp-btn svg { width: 20px; height: 20px; }
.cart-whatsapp-info { font-size: 0.72rem; color: var(--texto-suave); text-align: center; margin-top: 8px; }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb { padding: 12px 0; background: var(--branco); border-bottom: 1px solid var(--cinza-borda); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: 0.8rem; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li a { color: var(--texto-suave); transition: color var(--ease); }
.breadcrumb li a:hover { color: var(--amarelo-hov); }
.breadcrumb li.active { color: var(--azul); font-weight: 600; }
.breadcrumb li + li::before { content: "/"; color: var(--cinza-borda); }

/* =============================================
   PAGINAÇÃO
   ============================================= */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; }
.page-btn { min-width: 38px; height: 38px; border: 1.5px solid var(--cinza-borda); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 600; color: var(--azul); transition: background var(--ease), border-color var(--ease); padding: 0 10px; }
.page-btn:hover { border-color: var(--amarelo); background: var(--amarelo-bg); }
.page-btn.active { background: var(--amarelo); border-color: var(--amarelo); color: var(--azul); }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* =============================================
   FILTROS (CATÁLOGO)
   ============================================= */
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.filters-sidebar { background: var(--branco); border: 1.5px solid var(--cinza-borda); border-radius: var(--radius-lg); padding: 20px; position: sticky; top: 80px; }
.filter-group { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--cinza-borda); }
.filter-group:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.filter-group h4 { font-size: 0.85rem; font-weight: 700; color: var(--azul); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.filter-option { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--amarelo); width: 16px; height: 16px; cursor: pointer; }
.filter-option label { font-size: 0.85rem; color: var(--texto-suave); cursor: pointer; flex: 1; }
.filter-option span  { font-size: 0.75rem; color: var(--texto-suave); }
.filter-price-inputs { display: grid; grid-template-columns: 1fr auto 1fr; gap: 6px; align-items: center; }
.filter-price-separator { font-size: 0.8rem; color: var(--texto-suave); text-align: center; }
.filter-price-input { min-width: 0; width: 100%; border: 1.5px solid var(--cinza-borda); border-radius: var(--radius); padding: 7px 8px; font-size: 0.82rem; color: var(--azul); outline: none; }
.filter-price-input:focus { border-color: var(--amarelo); }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding: 12px 16px; background: var(--branco); border: 1.5px solid var(--cinza-borda); border-radius: var(--radius); flex-wrap: wrap; gap: 10px; }
.catalog-count { font-size: 0.85rem; color: var(--texto-suave); }
.catalog-sort  { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--texto-suave); }
.sort-select   { border: 1.5px solid var(--cinza-borda); border-radius: var(--radius); padding: 6px 10px; font-size: 0.82rem; color: var(--azul); outline: none; cursor: pointer; }

/* =============================================
   BADGES E TAGS
   ============================================= */
.badge { display: inline-flex; align-items: center; font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; letter-spacing: 0.04em; }
.badge-yellow  { background: var(--amarelo-bg); color: #92400E; }
.badge-dark    { background: var(--azul); color: var(--amarelo); }
.badge-outline { background: transparent; color: var(--azul); border: 1px solid var(--cinza-borda); }

/* =============================================
   BOTÕES GERAIS
   ============================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 0.9rem; padding: 10px 20px; border-radius: var(--radius); transition: background var(--ease), transform var(--ease); cursor: pointer; }
.btn-primary  { background: var(--amarelo); color: var(--azul); }
.btn-primary:hover  { background: var(--amarelo-hov); transform: translateY(-1px); }
.btn-secondary { background: var(--azul); color: #fff; }
.btn-secondary:hover { background: var(--azul-deep); transform: translateY(-1px); }
.btn-outline  { background: transparent; color: var(--azul); border: 2px solid var(--azul); }
.btn-outline:hover  { background: var(--azul); color: #fff; }
.btn-lg { padding: 13px 28px; font-size: 1rem; }
.btn-sm { padding: 7px 14px; font-size: 0.8rem; }
.btn svg { width: 18px; height: 18px; }

/* =============================================
   TOAST
   ============================================= */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--azul); color: #fff; padding: 12px 18px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 500; box-shadow: var(--sombra-lg); display: flex; align-items: center; gap: 10px; animation: slideInRight 0.3s ease, fadeOut 0.3s ease 2.7s forwards; max-width: 320px; }
.toast.success { border-left: 4px solid #22C55E; }
.toast.warning { border-left: 4px solid var(--amarelo); }
.toast svg { width: 18px; height: 18px; flex-shrink: 0; }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeOut { to { opacity: 0; transform: translateX(100%); } }

/* =============================================
   PÁGINA DE PRODUTO
   ============================================= */
.product-detail { padding: 40px 0; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-gallery { position: sticky; top: 80px; }
.product-gallery-main { background: var(--cinza-bg); border-radius: var(--radius-lg); aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 12px; border: 1.5px solid var(--cinza-borda); }
.product-gallery-main img { max-width: 80%; max-height: 80%; object-fit: contain; }
.product-gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb { width: 64px; height: 64px; background: var(--cinza-bg); border: 2px solid var(--cinza-borda); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: border-color var(--ease); }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--amarelo); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.product-info-brand { font-size: 0.8rem; font-weight: 700; color: var(--texto-suave); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.product-info h1 { font-size: 1.6rem; color: var(--azul); margin-bottom: 14px; }
.product-info-price-block { margin-bottom: 20px; }
.product-info-price { font-size: 2rem; font-weight: 800; color: var(--azul); }
.product-info-price-note { font-size: 0.78rem; color: var(--texto-suave); margin-top: 4px; }
.product-info-desc { font-size: 0.9rem; color: var(--texto-suave); line-height: 1.7; margin-bottom: 24px; border-top: 1px solid var(--cinza-borda); padding-top: 20px; }
.product-qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.product-qty-label { font-size: 0.82rem; font-weight: 600; color: var(--azul); }
.product-qty-control { display: flex; align-items: center; border: 1.5px solid var(--cinza-borda); border-radius: var(--radius); overflow: hidden; }
.product-qty-btn { width: 36px; height: 36px; background: var(--cinza-leve); color: var(--azul); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background var(--ease); }
.product-qty-btn:hover { background: var(--amarelo); }
.product-qty-input { width: 48px; height: 36px; border: none; text-align: center; font-size: 0.95rem; font-weight: 700; color: var(--azul); outline: none; }
.product-action-btns { display: flex; gap: 10px; margin-bottom: 20px; }
.product-action-btns .btn-cart { flex: 1; font-size: 0.95rem; padding: 13px; }
.product-whatsapp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #22C55E; color: #fff; font-weight: 600; font-size: 0.88rem; padding: 10px 20px; border-radius: var(--radius); transition: background var(--ease); margin-bottom: 8px; }
.product-whatsapp-btn:hover { background: #16A34A; }

/* =============================================
   SEÇÃO SOBRE (sobre.html)
   ============================================= */
.section-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.section-title h2 { color: var(--azul); }
.section-title h2 span { color: var(--amarelo-hov); }

/* =============================================
   UTILITÁRIOS
   ============================================= */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.divider { height: 1px; background: var(--cinza-borda); margin: 24px 0; }
.skeleton { background: linear-gradient(90deg, var(--cinza-bg) 25%, var(--cinza-borda) 50%, var(--cinza-bg) 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: var(--radius); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* =============================================
   RESPONSIVO
   ============================================= */

/* Tablet largo (≤1100px) */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-detail-grid { gap: 32px; }
  .feature-item { padding: 26px 28px; }
}

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .cat-icon-box { width: 68px; height: 68px; }
  .cat-icon-box svg { width: 28px; height: 28px; }
  .feature-item { padding: 22px 20px; }
  .section { padding: 52px 0; }
}

/* =============================================
   CATÁLOGO TAMBASA
   ============================================= */
.tambasa-section { background: var(--cinza-bg); }

.tambasa-search-wrap {
  margin: 0 0 24px;
}
.tambasa-search-inner {
  position: relative;
  max-width: 560px;
}
.tambasa-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--texto-suave);
  pointer-events: none;
}
.tambasa-search-input {
  width: 100%;
  padding: 12px 44px 12px 44px;
  border: 1.5px solid var(--cinza-borda);
  border-radius: 10px;
  font-size: 0.92rem;
  background: var(--branco);
  color: var(--texto);
  transition: border-color 0.15s;
  outline: none;
}
.tambasa-search-input:focus { border-color: var(--azul); }
.tambasa-search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texto-suave);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.tambasa-search-clear svg { width: 16px; height: 16px; }

.tambasa-info {
  font-size: 0.82rem;
  color: var(--texto-suave);
  margin-bottom: 20px;
  min-height: 20px;
}

.tambasa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  min-height: 200px;
}

/* Skeleton loader */
.tambasa-skeleton {
  background: var(--branco);
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--cinza-borda);
}
.tambasa-skeleton-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.tambasa-skeleton-line {
  height: 12px;
  margin: 12px 12px 8px;
  border-radius: 6px;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.tambasa-skeleton-line-sm {
  height: 10px;
  width: 60%;
  margin: 0 12px 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Card produto Tambasa */
.tambasa-card {
  background: var(--branco);
  border: 1.5px solid var(--cinza-borda);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
  cursor: default;
}
.tambasa-card:hover {
  border-color: var(--azul);
  box-shadow: 0 4px 18px rgba(45,58,74,0.13);
  transform: translateY(-2px);
}
.tambasa-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fafafa;
  padding: 10px;
}
.tambasa-card-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--cinza-leve);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tambasa-card-img-placeholder svg { width: 36px; height: 36px; color: var(--cinza-borda); }
.tambasa-card-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}
.tambasa-card-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--texto);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tambasa-card-code {
  font-size: 0.7rem;
  color: var(--texto-suave);
  font-weight: 500;
}
.tambasa-card-wabtn {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #22C55E;
  color: #fff;
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 10px;
  text-decoration: none;
  transition: background 0.15s;
}
.tambasa-card-wabtn:hover { background: #16a34a; color: #fff; }
.tambasa-card-wabtn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Paginação */
.tambasa-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.tambasa-page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1.5px solid var(--cinza-borda);
  background: var(--branco);
  color: var(--texto);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tambasa-page-btn:hover:not(:disabled) { border-color: var(--azul); background: var(--azul-suave); }
.tambasa-page-btn.active { background: var(--azul); color: var(--branco); border-color: var(--azul); }
.tambasa-page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* Estado vazio */
.tambasa-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 0;
  color: var(--texto-suave);
}
.tambasa-empty svg { width: 40px; height: 40px; margin: 0 auto 12px; display: block; }

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .tambasa-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tambasa-search-inner { max-width: 100%; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .topbar { display: none; }
  .header-main { flex-wrap: wrap; gap: 10px; padding: 10px 0; }
  .search-bar { order: 3; flex-basis: 100%; }
  .header-nav { display: none; }
  .header-nav.open { display: block; }
  .mobile-menu-btn { display: flex; }
  .header-actions .header-action-btn span { display: none; }

  .hero-slide { height: 300px; }
  .hero-content { padding: 0 24px; max-width: 100%; }
  .hero-content h1 { font-size: 1.35rem; }
  .hero-content p { display: none; }
  .hero-prev { left: 10px; }
  .hero-next { right: 10px; }

  .section { padding: 44px 0; }
  .section-heading-large { font-size: 1.15rem; }
  .section-header { margin-bottom: 24px; }

  .features-grid { flex-direction: column; align-items: stretch; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--cinza-borda); padding: 22px 20px; }
  .feature-item:last-child { border-bottom: none; }

  .cat-carousel-wrap { gap: 4px; }
  .cat-prev, .cat-next { width: 32px; height: 32px; }
  .cat-prev svg, .cat-next svg { width: 16px; height: 16px; }
  .cat-icon-box { width: 60px; height: 60px; border-radius: 12px; }
  .cat-icon-box svg { width: 24px; height: 24px; }
  .cat-label { font-size: 0.65rem; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-body { padding: 10px; }
  .product-price { font-size: 1.1rem; }

  .banner-strip .container { flex-direction: column; align-items: flex-start; gap: 20px; }
  .banner-strip h2 { font-size: 1.2rem; }

  .reviews-hero-score { gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-items-row { gap: 16px; }
  .map-wrap iframe { height: 260px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }

  .calculator-body { padding: 18px 16px; }
  .calculator-header { padding: 18px 20px; }
}

/* Mobile pequeno (≤480px) */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  .hero-slide { height: 240px; }
  .hero-content { padding: 0 16px; }
  .hero-content h1 { font-size: 1.2rem; }
  .hero-content .badge { font-size: 0.65rem; }

  .section { padding: 36px 0; }
  .section-heading-large { font-size: 1.05rem; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .product-price { font-size: 1rem; }
  .product-footer { padding: 0 8px 10px; }
  .btn-cart { font-size: 0.75rem; padding: 8px; }

  .cat-icon-box { width: 54px; height: 54px; border-radius: 10px; }
  .cat-icon-box svg { width: 22px; height: 22px; }
  .cat-label { font-size: 0.62rem; }

  .features-grid { flex-direction: column; }
  .feature-item { border-right: none; padding: 16px 14px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  .cart-drawer { width: 100%; max-width: 100%; }

  .reviews-score { padding: 20px 28px; }
  .score-number { font-size: 2.6rem; }
}

/* Extra largo (≥1400px) */
@media (min-width: 1400px) {
  :root { --max-width: 1360px; }
  .hero-slide { height: 500px; }
  .products-grid { grid-template-columns: repeat(5, 1fr); }
  .cat-icon-box { width: 84px; height: 84px; }
  .cat-icon-box svg { width: 36px; height: 36px; }
  .feature-item { padding: 28px 44px; }
}
