:root {
  --bg: #0f0f0f;
  --bg-soft: #171717;
  --panel: #151515;
  --panel-soft: #1d1d1d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #c6c6c6;
  --orange: #ff6600;
  --orange-deep: #d94f00;
  --orange-glow: rgba(255, 102, 0, 0.24);
  --orange-soft: rgba(255, 102, 0, 0.14);
  --white-soft: rgba(255, 255, 255, 0.05);
  --ok: #41c97d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --shadow-premium: 0 26px 80px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --radius-soft: 20px;
  --container: 1260px;
}

.lord-freight-banner {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  padding: 40px 20px;
  margin: 40px 0;
  border-radius: 12px;
  color: white;
  text-align: center;
}

.banner-content {
  max-width: 600px;
  margin: 0 auto;
}

.banner-content h2 {
  font-size: 32px;
  margin: 0 0 10px 0;
}

.banner-content p {
  font-size: 16px;
  margin: 5px 0;
}

.banner-example {
  background: rgba(255,255,255,0.15);
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 14px;
}

.banner-example strong {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

.banner-cta {
  display: inline-block;
  background: white;
  color: #FF6B35;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
  transition: transform 0.2s;
}

.banner-cta:hover {
  transform: scale(1.05);
}

.lord-freight-badge {
  margin: 20px 0;
  padding: 0;
  animation: fadeIn 0.3s ease;
}

.freight-badge-content {
  padding: 16px 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease;
}

.freight-badge-content.paid {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  border: 2px solid #FF6B35;
}

.freight-badge-content.free {
  background: linear-gradient(135deg, #00C853 0%, #00BF40 100%);
  border: 2px solid #00BF40;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.02); }
}

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

.freight-main-text {
  font-size: 18px;
  margin-bottom: 8px;
}

.freight-sub-text {
  font-size: 13px;
  opacity: 0.95;
  line-height: 1.4;
}

.freight-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.lord-freight-suggestions {
  background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);
  border-left: 4px solid #FF6B35;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  display: none;
  color: #222;
}

.lord-freight-suggestions.show {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.suggestions-title {
  color: #FF6B35;
  font-size: 16px;
  margin: 0 0 5px 0;
  font-weight: bold;
}

.suggestions-subtitle {
  color: #666;
  font-size: 13px;
  margin: 0 0 15px 0;
}

.suggestions-products {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.suggestion-btn {
  background: #FF6B35;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.2s;
  text-align: left;
  min-height: 44px;
}

.suggestion-btn:hover {
  background: #E55A2B;
  transform: translateX(5px);
}

.suggestion-btn:active {
  transform: scale(0.98);
}

.lord-item-counter {
  background: #E8F5E9;
  border: 2px solid #4CAF50;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  color: #2E7D32;
}

.counter-text {
  font-size: 14px;
  color: #2E7D32;
  margin-bottom: 10px;
}

.progress-container {
  width: 100%;
  height: 8px;
  background: #DDD;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px 0;
}

.progress-bar {
  width: 100%;
  height: 100%;
  background: #DDD;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4CAF50 0%, #45a049 100%);
  transition: width 0.3s ease;
  width: 0%;
}

.counter-message {
  font-size: 13px;
  color: #2E7D32;
  margin: 10px 0 0 0;
  font-weight: bold;
}

.freight-row td {
  padding: 10px 0;
}

.freight-amount {
  font-weight: bold;
}

.freight-amount.free {
  color: #00C853;
  font-size: 16px;
}

.savings-badge {
  background: #E8F5E9;
  border-top: 1px solid #4CAF50;
}

.savings-content {
  background: #C8E6C9;
  color: #2E7D32;
  padding: 12px 15px;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
}

.lord-notifications {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

.lord-notification {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  animation: slideInRight 0.3s ease;
  border-left: 4px solid;
}

.lord-notification.success {
  border-left-color: #4CAF50;
  color: #2E7D32;
}

.lord-notification.info {
  border-left-color: #FF6B35;
  color: #E55A2B;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(400px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
  .lord-freight-banner {
    padding: 30px 15px;
  }
  .banner-content h2 {
    font-size: 24px;
  }
  .freight-badge-content {
    padding: 12px 16px;
    font-size: 14px;
  }
  .freight-main-text {
    font-size: 16px;
  }
  .freight-icon {
    font-size: 20px;
  }
  .lord-freight-suggestions {
    padding: 15px;
    margin: 15px 0;
  }
  .suggestions-products {
    gap: 8px;
  }
  .suggestion-btn {
    padding: 10px 12px;
    font-size: 13px;
  }
  .lord-notifications {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 102, 0, 0.12), transparent 22%),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.045), transparent 18%),
    linear-gradient(180deg, #0b0b0b 0%, #101010 44%, #0d0d0d 100%);
  background-attachment: fixed;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.trust-band {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.trust-band-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 14px 0;
}

.trust-band-item {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.trust-band-item strong,
.trust-band-item span {
  display: block;
}

.trust-band-item strong {
  font-size: 13px;
  margin-bottom: 4px;
}

.trust-band-item span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 102, 0, 0.22);
  background:
    linear-gradient(180deg, rgba(19, 19, 19, 0.98), rgba(12, 12, 12, 0.98));
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.header-topline {
  background: linear-gradient(90deg, #ff6a00, #f55b00);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.header-topline-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  min-height: 42px;
}

.header-main-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 0 14px;
}

.header-nav-row {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 2px solid rgba(255, 102, 0, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-header {
  gap: 12px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.34));
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffb17f;
}

.brand strong {
  font-size: 16px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.brand-header strong {
  font-size: 20px;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255, 102, 0, 0.08);
}

.brand span {
  font-size: 10px;
  color: var(--muted);
}

.nav-toggle {
  display: none;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  justify-content: center;
}

.site-nav a {
  padding: 14px 18px;
  border-radius: 0;
  color: #f0f0f0;
  border: 1px solid transparent;
  transition: 0.22s ease;
  font-size: 13px;
  font-weight: 800;
  position: relative;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  background: transparent;
  border-color: transparent;
}

.site-nav-main a.active::after,
.site-nav-main a:hover::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -2px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}

.header-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
}

.header-actions-hero {
  justify-content: flex-end;
}

.header-search {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    #161616;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.header-search-icon {
  flex: 0 0 auto;
  font-size: 18px;
}

.header-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  font-size: 15px;
}

.header-search input::placeholder {
  color: #8e8e8e;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: 0.22s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 102, 0, 0.24);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(217, 79, 0, 0.26);
}

.btn-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    #111111;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #33e06a, #18bb51);
  border-color: transparent;
  color: #ffffff;
  min-width: 138px;
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 6px 0 4px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.hero-card,
.section-card,
.product-card,
.advantage-card,
.proof-card,
.info-card,
.kit-card,
.contact-card,
.builder-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    var(--panel);
  box-shadow: var(--shadow-premium);
}

.hero-card {
  padding: 12px 14px;
  min-height: auto;
  display: grid;
  align-content: space-between;
  background:
    radial-gradient(circle at top right, rgba(255, 102, 0, 0.19), transparent 28%),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.025), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--panel);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  width: fit-content;
  border: 1px solid rgba(255, 102, 0, 0.16);
  background: rgba(255, 102, 0, 0.08);
  color: #ffc8a6;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 8px 0 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.hero p,
.page-hero p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.hero-actions,
.stack-actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  color: #f1f1f1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.stat-card {
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 0.95;
}

.stat-card span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.hero-visual {
  display: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, #1d1d1d, #121212);
}

.visual-stage {
  min-height: 150px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at top left, rgba(255, 102, 0, 0.16), transparent 26%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    #161616;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
}

.visual-stage strong {
  font-size: 18px;
  line-height: 0.95;
  font-family: "Space Grotesk", sans-serif;
}

.visual-stage span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.tier-card {
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.035);
}

.tier-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.tier-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.section {
  padding: 3px 0;
}

.section-tight {
  padding-top: 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 6px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.06em;
}

.section-head p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.35;
  font-size: 11px;
}

.category-grid,
.product-grid,
.advantages-grid,
.proof-grid,
.kits-grid,
.info-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.compact-categories {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grouped-category-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 16px;
}

.grouped-category-block {
  padding: 12px;
  min-width: 0;
  width: 100%;
}

.grouped-category-block-featured {
  flex: 1 1 100%;
  width: 100%;
}

.grouped-category-block:not(.grouped-category-block-featured) .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  justify-content: stretch;
}

.grouped-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.grouped-head h2 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.grouped-head p {
  margin: 3px 0 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.25;
}

.grouped-count {
  flex: 0 0 auto;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background:
    radial-gradient(circle at right top, rgba(255, 102, 0, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012)),
    var(--panel);
}

.catalog-title {
  margin: 4px 0 2px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: "Space Grotesk", sans-serif;
}

.catalog-copy {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.25;
}

.grouped-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
}

.grouped-index-card {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
  transition: 0.2s ease;
}

.grouped-index-card:hover {
  border-color: rgba(255, 102, 0, 0.2);
  transform: translateY(-1px);
}

.grouped-index-card strong {
  font-size: 12px;
  line-height: 1.15;
}

.grouped-index-card span {
  color: var(--muted);
  font-size: 10px;
}

.advantages-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.category-card,
.product-card,
.advantage-card,
.proof-card,
.info-card,
.kit-card,
.contact-card {
  padding: 10px;
}

.category-card,
.product-card,
.kit-card {
  display: grid;
  gap: 6px;
  align-content: start;
  grid-template-rows: auto auto auto 1fr auto auto auto;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.category-card::before,
.product-card::before,
.kit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(255, 102, 0, 0.09), transparent 26%);
  opacity: 0;
  transition: 0.24s ease;
}

.category-card:hover,
.product-card:hover,
.kit-card:hover,
.advantage-card:hover,
.proof-card:hover,
.info-card:hover,
.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.12);
}

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

.product-visual,
.category-visual,
.kit-visual {
  min-height: 160px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, #ffffff, #f4f1ea);
  box-shadow: inset 0 -18px 26px rgba(0, 0, 0, 0.03);
}

.product-visual-photo,
.category-visual-photo {
  overflow: hidden;
  padding: 0;
}

.product-visual-photo img,
.category-visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transform: scale(1.01);
}

.product-head {
  display: grid;
  gap: 4px;
}

.product-head h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.product-meta {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.product-copy,
.muted-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
  font-size: 12px;
}

.search-empty {
  padding: 18px;
  color: var(--muted);
  font-size: 13px;
}

.tag {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 102, 0, 0.12);
  color: #ffd2b1;
  border: 1px solid rgba(255, 102, 0, 0.16);
}

.price-stack {
  display: grid;
  gap: 6px;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.price-line span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.price-line strong {
  font-size: 17px;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.price-line small {
  color: #b6b6b6;
  font-size: 10px;
  font-weight: 700;
}

.price-line-atacarejo {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.price-line-atacarejo {
  border-color: rgba(255, 102, 0, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 102, 0, 0.14), rgba(255, 102, 0, 0.05));
}

.installment-line {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
  padding: 2px 2px 0;
  align-self: end;
}

.product-price-duo {
  align-content: start;
  align-self: end;
}

.product-cta-stack {
  display: grid;
  gap: 8px;
  align-self: end;
}

.detail-price-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.price-card {
  padding: 10px;
}

.price-card span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.price-card strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  line-height: 0.95;
}

.bullet-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  display: flex;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  line-height: 1.5;
}

.product-cta-row {
  margin-top: 2px;
  align-self: end;
}

.category-copy {
  display: grid;
  gap: 4px;
}

.category-copy h3 {
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.category-copy p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
}

.bullet-list li::before {
  content: "•";
  color: var(--orange);
}

.color-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.color-dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.color-count {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.color-swatches {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.color-swatch {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  padding: 0;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  background-color: #999;
}

.color-swatch:hover {
  transform: scale(1.12);
}

.color-swatch.is-active {
  box-shadow: 0 0 0 2px var(--orange, #f08000), inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  transform: scale(1.08);
}

.color-swatch:focus-visible {
  outline: 2px solid var(--orange, #f08000);
  outline-offset: 2px;
}

.page-hero {
  padding: 6px 0 4px;
}

.page-hero-card {
  min-height: auto;
  padding: 14px 16px;
  gap: 6px;
}

.page-hero-card .eyebrow {
  padding: 6px 10px;
  font-size: 10px;
}

.page-hero h1 {
  margin: 4px 0 2px;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 0.98;
}

.page-hero p {
  font-size: 14px;
  line-height: 1.45;
  max-width: 820px;
}

body:not([data-page="index.html"]) .page-hero {
  display: block;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 18px;
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 18px;
}

.builder-card,
.contact-card {
  padding: 18px;
}

.compact-container {
  width: min(calc(100% - 32px), 1080px);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffb17f;
}

.field input,
.field select {
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.field select option {
  color: #111111;
  background: #ffffff;
}

.kit-result {
  display: grid;
  gap: 14px;
}

.kit-result .summary {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 102, 0, 0.16);
  background: rgba(255, 102, 0, 0.08);
}

.kit-result .summary strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.kit-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.kit-preview-card {
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.kit-preview-image {
  min-height: 120px;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff, #f1efe9);
}

.kit-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.kit-preview-copy {
  display: grid;
  gap: 4px;
}

.kit-preview-copy h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
}

.kit-preview-copy strong {
  font-size: 18px;
  color: #ffffff;
}

.kit-preview-empty {
  padding: 16px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 13px;
}

.sticky-wa {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 40;
}

.sticky-wa a {
  min-width: 118px;
  box-shadow: var(--shadow);
  min-height: 34px;
  padding: 6px 10px;
  font-size: 12px;
}

.site-footer {
  padding: 16px 0 24px;
  color: var(--muted);
}

.assurance-card {
  padding: 30px;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.footer-card {
  padding: 16px;
}

.footer-logo {
  width: 88px;
  margin-bottom: 8px;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  gap: 18px;
}

.footer-card h4 {
  margin: 0 0 10px;
  font-size: 16px;
}

.product-detail-grid {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 8px;
}

.gallery-panel,
.product-summary-panel,
.detail-description {
  padding: 12px;
}

.gallery-main {
  min-height: 300px;
  border-radius: 14px;
  overflow: hidden;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.gallery-strip {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.thumb-btn {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  background: #171717;
  cursor: pointer;
}

.thumb-btn.active {
  border-color: rgba(255, 102, 0, 0.6);
}

.thumb-btn img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-detail-title {
  margin: 8px 0 8px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-family: "Space Grotesk", sans-serif;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0;
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.color-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  transition: 0.2s ease;
  font-size: 12px;
}

.color-option.active,
.color-option:hover {
  border-color: rgba(255, 102, 0, 0.36);
  color: var(--text);
  background: rgba(255, 102, 0, 0.08);
}

.product-detail-copy {
  padding-top: 0;
}

.trust-inline-product {
  margin: 10px 0 12px;
}

.meta-grid .info-card {
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    var(--panel-soft);
}

.meta-grid .info-card h3 {
  margin: 0 0 6px;
  font-size: 12px;
}

.product-summary-panel .lead,
.detail-description p {
  font-size: 12px;
  line-height: 1.35;
}

.admin-shell,
.seller-shell {
  padding: 10px 0 22px;
}

.admin-login-card,
.admin-panel,
.seller-hero,
.seller-copy,
.seller-form-card {
  padding: 16px;
}

.admin-login-card {
  max-width: 480px;
  margin: 0 auto;
}

.admin-login-form,
.seller-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffc8a6;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  outline: none;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(255, 102, 0, 0.32);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.08);
}

.admin-error,
.admin-status {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 12px;
}

.system-feedback-card {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.system-feedback-card h2 {
  margin: 0;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-family: "Space Grotesk", sans-serif;
}

.system-feedback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.admin-summary span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 11px;
  color: var(--muted);
}

.admin-filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 10px;
  margin-bottom: 12px;
}

.admin-search-input,
.admin-category-filter,
.filter-chip {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  outline: none;
}

.admin-search-input:focus,
.admin-category-filter:focus {
  border-color: rgba(255, 102, 0, 0.32);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.08);
}

.admin-category-filter option {
  color: #111111;
  background: #ffffff;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
  border-color: rgba(255, 102, 0, 0.3);
  background: rgba(255, 102, 0, 0.12);
  color: #ffd2b1;
}

.admin-table-wrap {
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

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

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #151515;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffc8a6;
}

.admin-table strong {
  display: block;
  font-size: 13px;
}

.admin-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.admin-price-input {
  width: 120px;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
}

.seller-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
  margin-top: 10px;
}

.contact-hero,
.about-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 14px;
  padding: 18px;
  background:
    radial-gradient(circle at right top, rgba(255, 102, 0, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
    var(--panel);
}

.contact-title {
  margin: 6px 0 8px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.contact-copy {
  max-width: 760px;
}

.contact-hero-side,
.about-proof-grid {
  display: grid;
  gap: 10px;
}

.contact-highlight,
.about-proof-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.contact-highlight strong,
.about-proof-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.contact-highlight span,
.about-proof-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.contact-grid-premium,
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-card-premium,
.about-panel {
  padding: 16px;
}

.contact-card-premium h3,
.about-panel h2 {
  margin: 8px 0 8px;
  font-size: 24px;
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-family: "Space Grotesk", sans-serif;
}

.compact-bullets {
  margin: 0 0 12px;
}

.compact-bullets li {
  font-size: 12px;
}

.contact-service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
}

.contact-service-item {
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
}

.contact-service-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.contact-service-item span,
.about-copy-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.about-panel-dark {
  background:
    radial-gradient(circle at right top, rgba(255, 102, 0, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012)),
    var(--panel);
}

@media (min-width: 1024px) {
  .sticky-wa {
    display: none;
  }

  .site-footer {
    display: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .builder-layout,
  .product-detail-grid,
  .footer-grid,
  .category-grid,
  .product-grid,
  .advantages-grid,
  .proof-grid,
  .kits-grid,
  .info-grid,
  .assurance-grid,
  .trust-band-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .header-main-row {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero-stats,
  .tiers,
  .price-row,
  .detail-price-row,
  .gallery-strip,
  .meta-grid {
    grid-template-columns: 1fr;
  }

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

  .compact-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .seller-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero,
  .about-hero,
  .contact-grid-premium,
  .about-grid,
  .contact-service-strip,
  .admin-filters {
    grid-template-columns: 1fr;
  }

  .grouped-category-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .grouped-category-block,
  .grouped-category-block-featured {
    width: 100%;
    flex-basis: auto;
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container,
  .compact-container,
  .product-detail-grid {
    width: min(calc(100% - 20px), var(--container));
  }

  .brand {
    align-items: center;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-header strong {
    font-size: 18px;
  }

  .header-topline-inner {
    justify-content: flex-start;
    gap: 10px;
    padding: 8px 0;
    min-height: auto;
    font-size: 11px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .header-main-row {
    padding: 12px 0;
  }

  .header-search {
    order: 3;
    width: 100%;
  }

  .header-actions {
    width: 100%;
  }

  .header-search {
    min-height: 44px;
    padding: 0 14px;
  }

  .site-nav a {
    padding: 12px 14px;
    white-space: nowrap;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav {
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .site-nav a {
    scroll-snap-align: start;
  }

  .hero,
  .page-hero,
  .section {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .hero-card,
  .page-hero-card,
  .section-card,
  .builder-card,
  .contact-card,
  .contact-card-premium,
  .about-panel {
    border-radius: 22px;
  }

  .hero-card,
  .page-hero-card {
    padding: 16px 14px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

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

  .section-head p,
  .catalog-copy,
  .muted-copy,
  .hero p,
  .page-hero p {
    font-size: 13px;
    line-height: 1.45;
  }

  .trust-inline,
  .color-dots,
  .hero-actions,
  .split-actions,
  .stack-actions {
    gap: 8px;
  }

  .trust-chip {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-actions .btn,
  .header-actions .btn,
  .catalog-topbar .btn,
  .system-feedback-actions .btn,
  .admin-actions .btn {
    width: 100%;
  }

  .admin-actions,
  .system-feedback-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .compact-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grouped-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grouped-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .grouped-count {
    align-self: flex-start;
  }

  .contact-title {
    font-size: clamp(20px, 8vw, 30px);
  }

  .product-visual,
  .category-visual,
  .kit-visual {
    min-height: 128px;
  }

  .product-head h3,
  .category-copy h3 {
    font-size: 13px;
  }

  .price-line strong {
    font-size: 15px;
  }

  .price-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-line small {
    margin-top: 2px;
  }

  .product-card,
  .category-card,
  .kit-card,
  .info-card,
  .contact-card {
    padding: 12px;
  }

  .product-detail-grid {
    gap: 12px;
  }

  .gallery-panel,
  .product-summary-panel,
  .detail-description {
    padding: 14px;
  }

  .gallery-main {
    min-height: 220px;
  }

  .gallery-main img,
  .thumb-btn img {
    object-fit: contain;
    background: #111111;
  }

  .gallery-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .kit-preview-grid {
    grid-template-columns: 1fr;
  }

  .kit-preview-card {
    grid-template-columns: 96px 1fr;
    align-items: center;
  }

  .kit-preview-image {
    min-height: 96px;
  }

  .admin-table {
    min-width: 640px;
  }

  .admin-table th,
  .admin-table td {
    padding: 10px 10px;
  }

  .admin-price-input {
    width: 96px;
  }

  .sticky-wa {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .sticky-wa a {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    border-radius: 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .container,
  .compact-container,
  .product-detail-grid {
    width: min(calc(100% - 16px), var(--container));
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-header strong {
    font-size: 16px;
  }

  .catalog-title,
  .product-detail-title {
    font-size: 20px;
  }

  .hero h1,
  .page-hero h1,
  .contact-title {
    font-size: 24px;
  }

  .compact-categories,
  .grouped-index {
    grid-template-columns: 1fr;
  }

  .product-visual,
  .category-visual,
  .kit-visual {
    min-height: 112px;
  }

  .gallery-main {
    min-height: 180px;
  }

  .gallery-strip {
    gap: 6px;
  }

  .thumb-btn {
    border-radius: 8px;
  }

  .kit-preview-card {
    grid-template-columns: 1fr;
  }

  .kit-preview-image {
    min-height: 120px;
  }

  .contact-highlight,
  .about-proof-card,
  .contact-service-item {
    padding: 12px;
  }
}


/* === AJUSTE DE ALINHAMENTO GLOBAL 2026-04-23 === */
.product-card,
.kit-card,
.category-card {
  min-height: 380px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-visual,
.kit-visual,
.category-visual {
  aspect-ratio: 1 / 1;
  min-height: 0 !important;
  overflow: hidden;
}
.product-visual img,
.kit-visual img,
.category-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-head h3,
.category-card h3,
.kit-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}
.product-cta-row {
  margin-top: auto;
}
.price-stack {
  min-height: 110px;
}
/* Grid 4 colunas estavel em desktop */
@media (min-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .category-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (min-width: 1400px) {
  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .product-grid,
  .kits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 520px) {
  .product-grid,
  .kits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
/* Container: centralizar sempre, evitar grids esticados demais em telas largas */
.container {
  max-width: min(1280px, 96%);
  margin-left: auto;
  margin-right: auto;
}

/* === LORD REDESIGN 20260424 === */
.hero-v2 { padding: 56px 0 40px; }
.hero-v2 .eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: #d4a017; font-weight: 700; }
.hero-v2 h1 { font-size: clamp(28px, 4.2vw, 46px); line-height: 1.1; margin: 10px 0 14px; font-weight: 800; }
.hero-v2 .hero-sub { font-size: clamp(15px, 1.8vw, 18px); color: #cfcfcf; max-width: 640px; }
.btn.btn-lg { padding: 14px 22px; font-size: 16px; font-weight: 700; }
.btn.btn-whatsapp { background:#25D366; border-color:#25D366; color:#fff; }
.btn.btn-whatsapp:hover { background:#1fb858; }
.hero-highlights { list-style:none; margin: 18px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 18px; }
.hero-highlights li { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #ddd; }
.hero-highlights li span { filter: saturate(1.2); }

.trust-inline-v2 .trust-chip { border: 1px solid rgba(212,160,23,.35); background: rgba(212,160,23,.08); color: #f3d27a; }

.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 780px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 22px; }
.compare-card ul { margin: 10px 0 16px; padding-left: 18px; color: #ccc; line-height: 1.7; font-size: 14px; }
.compare-card h3 { margin: 6px 0 10px; font-size: 20px; }
.compare-card .eyebrow { text-transform: uppercase; font-size: 11px; letter-spacing: .12em; color: #d4a017; font-weight: 800; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 18px; margin: 0; }
.testimonial-card p { color: #e6e6e6; font-style: italic; font-size: 14px; line-height: 1.55; }
.testimonial-card cite { display: block; margin-top: 12px; font-size: 12px; color: #9a9a9a; font-style: normal; }

.cta-band { text-align: center; padding: 32px 20px; background: linear-gradient(135deg, rgba(212,160,23,.10), rgba(0,0,0,0)); border: 1px solid rgba(212,160,23,.25); border-radius: 18px; }
.cta-band h3 { margin: 0 0 6px; font-size: 24px; }
.cta-band p { margin: 0 0 16px; color: #cfcfcf; }

.footer-meta { border-top: 1px solid rgba(255,255,255,.08); margin-top: 22px; padding-top: 18px; }
.footer-meta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; font-size: 13px; color: #bdbdbd; }
@media (max-width: 800px) { .footer-meta-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-meta-grid { grid-template-columns: 1fr; } }
.footer-meta-grid strong { color: #d4a017; display: block; margin-bottom: 4px; }
.footer-disclaimer { font-size: 11px; color: #888; margin-top: 14px; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); margin-top: 16px; padding-top: 14px; font-size: 12px; color: #8a8a8a; text-align: center; }

.sticky-wa-mobile { position: fixed; right: 16px; bottom: 16px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: none; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(37,211,102,.45); z-index: 9999; transition: transform .2s ease; }
.sticky-wa-mobile:hover { transform: scale(1.05); }
@media (max-width: 900px) { .sticky-wa-mobile { display: inline-flex; } }

/* === FIM LORD REDESIGN === */

/* ============================================================ */
/* === LORD VISUAL FIX 2026-04-29 ============================= */
/* Corrige: descrições gigantes, fotos estouradas, ícones sociais */
/* ============================================================ */

/* ---------- 1) DESCRIÇÕES (line-clamp) ---------------------- */
/* Cards: descrição curta com limite de 3 linhas (desktop) */
.product-card .product-copy,
.product-card .muted-copy,
.product-card .product-meta,
.kit-card .product-copy,
.kit-card .muted-copy,
.category-card p,
.compact-categories .category-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
  /* não deixa empurrar preço/botão */
  flex: 0 0 auto;
}

/* Mobile: 2 linhas no máximo */
@media (max-width: 520px) {
  .product-card .product-copy,
  .product-card .muted-copy,
  .product-card .product-meta,
  .kit-card .product-copy,
  .kit-card .muted-copy,
  .category-card p,
  .compact-categories .category-card p {
    -webkit-line-clamp: 2;
    font-size: 11.5px;
    line-height: 1.3;
  }
}

/* Tablet/desktop pequeno: 2 linhas opcional para ficar mais limpo */
@media (min-width: 521px) and (max-width: 900px) {
  .product-card .product-copy,
  .product-card .muted-copy,
  .kit-card .product-copy,
  .kit-card .muted-copy {
    -webkit-line-clamp: 2;
  }
}

/* Página de produto (produto.html, kit-*.html, colchoes-*.html):
   descrição maior é OK, mas com max-width e espaçamento */
.detail-copy,
.product-detail-copy,
.product-detail .product-copy,
.product-page .product-copy,
.product-page .lead {
  max-width: 720px;
  font-size: 14px;
  line-height: 1.6;
  color: #d6d3c8;
  margin: 0 0 14px;
  /* sem clamp aqui — descrição completa permitida */
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
}

/* ---------- 2) FOTOS (tamanho consistente) ------------------ */
/* Padroniza visual dos cards.
   Antes: aspect-ratio 1/1 com cover — ficava muito alto.
   Agora: 4/3 para produtos/kits (melhor para colchões/bases) e
   limitada por max-height. */

.product-card .product-visual,
.kit-card .kit-visual {
  aspect-ratio: 4 / 3;
  width: 100%;
  max-height: 240px;
  min-height: 0 !important;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f4f1ea);
}

/* Mobile compactado */
@media (max-width: 520px) {
  .product-card .product-visual,
  .kit-card .kit-visual {
    max-height: 170px;
    aspect-ratio: 4 / 3;
  }
}

/* Cabeceiras costumam ser quadradas/altas — manter 1/1 quando o
   card tiver classe específica, mas com cap de altura */
.product-card[data-cat="cabeceiras"] .product-visual,
.product-card.is-cabeceira .product-visual {
  aspect-ratio: 1 / 1;
  max-height: 260px;
}

/* Cards de categoria menores (compact-categories) */
.compact-categories .category-card .category-visual {
  aspect-ratio: 4 / 3;
  max-height: 180px;
  min-height: 0 !important;
}

/* Imagem real dentro do visual */
.product-card .product-visual img,
.kit-card .kit-visual img,
.category-card .category-visual img,
.product-visual-photo img,
.category-visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  padding: 0;
  transform: none;
}

/* Fallback: produtos sem foto (apenas texto) usam contain */
.product-card .product-visual:not(.product-visual-photo) img,
.product-card .product-visual.is-illustration img {
  object-fit: contain;
  padding: 8px;
}

/* Cards: altura consistente.
   O bloco AJUSTE 2026-04-23 já fixou min-height: 380px com flex.
   Aqui só reforçamos overflow e impedimos deslocamento de preço/botão. */
.product-card,
.kit-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* preço sempre fica fixo no fim, nunca empurrado */
.product-card .price-stack,
.product-card .product-price-duo,
.kit-card .price-stack {
  margin-top: auto;
}

/* CTA (botão) fica realmente ancorado no fim */
.product-card .product-cta-stack,
.product-card .product-cta-row,
.kit-card .product-cta-stack {
  margin-top: 8px;
  align-self: stretch;
}

/* ---------- 3) ÍCONES SOCIAIS (FB / IG) --------------------- */
/* Classes utilitárias usadas pelo header e footer (site.js) */

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;            /* área clicável a11y mínima */
  height: 44px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}

.social-icon svg,
.social-icon img {
  width: 28px;            /* ícone visual desktop ~ 28px */
  height: 28px;
  display: block;
}

@media (min-width: 1100px) {
  .social-icon svg,
  .social-icon img {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 520px) {
  .social-icon {
    width: 44px;
    height: 44px;
  }
  .social-icon svg,
  .social-icon img {
    width: 26px;
    height: 26px;
  }
}

.social-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.social-icon-fb { background: #1877f2; color: #fff; }
.social-icon-ig {
  background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
  color: #fff;
}

/* Header: agrupa social + WhatsApp com gap consistente */
.header-actions-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Footer social row (rodapé institucional) */
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.footer-social-row .social-icon {
  background-clip: padding-box;
}

.footer-social-row .social-label {
  color: #cfcfcf;
  font-size: 13px;
  font-weight: 600;
  margin-left: 4px;
}

/* ---------- 4) PROTEÇÕES VISUAIS GLOBAIS -------------------- */
/* Imagens nunca estouram seu container */
.product-card img,
.kit-card img,
.category-card img,
.compare-card img,
.testimonial-card img {
  max-width: 100%;
  height: auto;
}

/* Garante que h3 do card não cause CLS */
.product-card .product-head h3,
.kit-card h3,
.category-card h3 {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  min-height: 38px;
}

@media (max-width: 520px) {
  .product-card .product-head h3,
  .kit-card h3,
  .category-card h3 {
    font-size: 14px;
    min-height: 34px;
  }
}

/* ---------- 5) PÁGINA DE PRODUTO (DETALHE) ------------------ */
.product-detail-grid,
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 900px) {
  .product-detail-grid,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.product-detail-grid .product-visual,
.detail-grid .product-visual {
  aspect-ratio: 4 / 3;
  max-height: 480px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.product-detail-grid .product-visual img,
.detail-grid .product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f4f1ea;
}

/* === FIM LORD VISUAL FIX 2026-04-29 ========================= */

/* === Hotfix BUG-063 (2026-05-08) === */
/* Causa: .product-grid usa auto-fit + 1fr; quando ha 1 filho a coluna estica 100% width.
   Fix: trocar para auto-fill + cap max 320px e alinhar a esquerda. */
.product-grid,
.grouped-category-block:not(.grouped-category-block-featured) .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 320px)) !important;
  justify-content: start !important;
}
/* === Fim Hotfix BUG-063 === */

/* === Hide topbar das categorias (carlos pediu 2026-05-09 noite) === */
.catalog-topbar.hide-catalog-topbar, .catalog-topbar { display: none !important; }


/* === Hide bloco FILTROS lord-filtros (carlos pediu 2026-05-09 noite) === */
#lord-filtros { display: none !important; }


/* === 4 produtos por linha desktop (carlos pediu 2026-05-09 noite) === */
.product-grid, .grouped-category-block:not(.grouped-category-block-featured) .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; justify-content: stretch !important; }
@media (max-width: 1080px) { .product-grid, .grouped-category-block:not(.grouped-category-block-featured) .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } }
@media (max-width: 720px) { .product-grid, .grouped-category-block:not(.grouped-category-block-featured) .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } }
@media (max-width: 480px) { .product-grid, .grouped-category-block:not(.grouped-category-block-featured) .product-grid { grid-template-columns: 1fr !important; } }


/* === Centralizar cards quando ha poucos (carlos pediu 2026-05-09 23:45) === */
.product-grid, .grouped-category-block:not(.grouped-category-block-featured) .product-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 280px)) !important; justify-content: center !important; max-width: 1240px; margin-left: auto; margin-right: auto; }
@media (max-width: 720px) { .product-grid, .grouped-category-block:not(.grouped-category-block-featured) .product-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 280px)) !important; } }


/* === So mostrar vitrine unificada Todos (carlos pediu 2026-05-09 23:50) === */
.grouped-category-block:not(#grouped-all) { display: none !important; }
.grouped-index { display: none !important; }


/* === Flexbox centralizado pra evitar espaco linha incompleta (carlos pediu 2026-05-09 23:55) === */
.product-grid, .grouped-category-block:not(.grouped-category-block-featured) .product-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 16px !important;
  grid-template-columns: none !important;
  max-width: 1240px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.product-grid > * {
  flex: 0 1 280px;
  max-width: 280px;
  min-width: 240px;
}
@media (max-width: 720px) {
  .product-grid > * { flex: 0 1 calc(50% - 12px); min-width: 0; max-width: none; }
}
@media (max-width: 480px) {
  .product-grid > * { flex: 0 1 100%; }
}


/* === Submenu Kits Prontos (2026-05-10) === */
.nav-dropdown{position:relative;display:inline-block}
.nav-dropdown-menu{display:none;position:absolute;top:100%;left:0;background:#1a1a1a;border:1px solid #333;min-width:180px;z-index:100;padding:6px 0;border-radius:6px;box-shadow:0 4px 12px rgba(0,0,0,.3)}
.nav-dropdown:hover .nav-dropdown-menu,.nav-dropdown:focus-within .nav-dropdown-menu{display:block}
.nav-dropdown-menu a{display:block;padding:10px 16px;color:#e8e5d8;text-decoration:none;font-size:14px}
.nav-dropdown-menu a:hover{background:#FF6B35;color:#fff}
@media(max-width:768px){.nav-dropdown-menu{position:static;display:block;margin-left:12px;border:none;background:transparent;box-shadow:none}}
.kits-tabs{display:flex;gap:8px;justify-content:center;margin:24px auto 32px;flex-wrap:wrap;padding:0 16px}
.kits-tab{padding:10px 20px;border:2px solid #333;border-radius:24px;color:#e8e5d8;text-decoration:none;font-weight:600;transition:all .15s;background:transparent;cursor:pointer;font-size:14px}
.kits-tab:hover{border-color:#FF6B35}
.kits-tab.active{background:#FF6B35;border-color:#FF6B35;color:#fff}

/* === FORCA 4 CARDS RIGIDO POR LINHA - sem espaco vazio (2026-05-11) === */
.product-grid,
.kits-grid,
.grouped-grid,
.lord-grid,
[class*="-grid"]:not(.swatch-grid):not(.kit-prices) {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
  justify-content: stretch !important;
}
.product-grid > *,
.kits-grid > *,
.grouped-grid > *,
.lord-grid > * {
  flex: unset !important;
  max-width: none !important;
  min-width: 0 !important;
  width: auto !important;
}
@media (max-width: 1024px) {
  .product-grid, .kits-grid, .grouped-grid, .lord-grid, [class*="-grid"]:not(.swatch-grid):not(.kit-prices) {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .product-grid, .kits-grid, .grouped-grid, .lord-grid, [class*="-grid"]:not(.swatch-grid):not(.kit-prices) {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}
@media (max-width: 420px) {
  .product-grid, .kits-grid, .grouped-grid, .lord-grid, [class*="-grid"]:not(.swatch-grid):not(.kit-prices) {
    grid-template-columns: 1fr !important;
  }
}

/* === CATEGORIAS DA HOME EM UMA LINHA SO (2026-05-11) === */
/* Sobrescreve a regra "FORCA 4 CARDS" pras categorias da home */
.compact-categories,
.category-grid.compact-categories,
section .compact-categories {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 10px !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 0 12px !important;
}
.compact-categories .category-card {
  padding: 0 !important;
  font-size: 13px !important;
  border-radius: 10px !important;
}
.compact-categories .category-visual {
  height: 110px !important;
  min-height: 110px !important;
  margin: 0 !important;
}
.compact-categories .category-visual img {
  width: 100% !important;
  height: 110px !important;
  object-fit: contain !important;
}
.compact-categories .category-copy {
  padding: 8px 10px 10px !important;
}
.compact-categories .category-copy h3 {
  font-size: 14px !important;
  margin: 0 0 3px !important;
  line-height: 1.2 !important;
}
.compact-categories .category-copy p {
  font-size: 11px !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  color: #a8a395 !important;
}
.compact-categories .category-visual-empty {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #1a1a1a !important;
  color: #555 !important;
  font-size: 11px !important;
}

/* Mobile: 3 colunas */
@media (max-width: 1024px) {
  .compact-categories,
  .category-grid.compact-categories,
  section .compact-categories {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
/* Celular: 2 colunas */
@media (max-width: 600px) {
  .compact-categories,
  .category-grid.compact-categories,
  section .compact-categories {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .compact-categories .category-visual { height: 90px !important; min-height: 90px !important; }
  .compact-categories .category-visual img { height: 90px !important; }
}

/* === HOME CATEGORIES UNICA LINHA REAL (2026-05-11 v2) === */
#homeCategories,
section #homeCategories,
.section #homeCategories {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  gap: 10px !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 12px !important;
  grid-template-columns: none !important;
  overflow-x: auto !important;
}
#homeCategories .category-card {
  flex: 0 0 auto !important;
  width: 170px !important;
  min-width: 170px !important;
  max-width: 170px !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  border-radius: 10px !important;
  display: flex !important;
  flex-direction: column !important;
}
#homeCategories .category-visual {
  height: 110px !important;
  min-height: 110px !important;
  max-height: 110px !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
}
#homeCategories .category-visual img {
  width: 100% !important;
  height: 110px !important;
  object-fit: contain !important;
  background: #f5f5f5 !important;
}
#homeCategories .category-visual-empty {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #1a1a1a !important;
  color: #555 !important;
  font-size: 11px !important;
  height: 110px !important;
}
#homeCategories .category-copy {
  padding: 8px 10px 10px !important;
  flex: 1 !important;
}
#homeCategories .category-copy h3 {
  font-size: 13px !important;
  margin: 0 0 3px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}
#homeCategories .category-copy p {
  font-size: 10px !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  color: #a8a395 !important;
}

/* Tablet */
@media (max-width: 900px) {
  #homeCategories .category-card { width: 130px !important; min-width: 130px !important; max-width: 130px !important; }
  #homeCategories .category-visual { height: 80px !important; min-height: 80px !important; max-height: 80px !important; }
  #homeCategories .category-visual img { height: 80px !important; }
  #homeCategories .category-copy h3 { font-size: 12px !important; }
  #homeCategories .category-copy p { display: none !important; }
}

/* === FIX espaco vazio nos category-cards da home (2026-05-11 v3) === */
#homeCategories .category-card {
  min-height: 0 !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  gap: 0 !important;
}
#homeCategories .category-visual {
  aspect-ratio: auto !important;
  height: 110px !important;
  min-height: 110px !important;
  max-height: 110px !important;
  margin: 0 !important;
  flex: 0 0 110px !important;
}
#homeCategories .category-copy {
  flex: 0 0 auto !important;
  padding: 8px 10px 10px !important;
}

/* === FIX buraco lateral + interno em ATACAREJO x VAREJO (2026-05-11) === */
.compare-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  align-items: stretch !important;
}
.compare-grid .compare-card {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}
.compare-grid .compare-card ul {
  flex: 1 1 auto !important;
}
.compare-grid .compare-card .btn,
.compare-grid .compare-card a.btn {
  margin-top: auto !important;
  align-self: flex-start !important;
}

@media (max-width: 768px) {
  .compare-grid {
    grid-template-columns: 1fr !important;
    max-width: 600px !important;
  }
}

/* === FIX FORCA buraco direito ATACAREJO x VAREJO (2026-05-11 v2) === */
section .compare-grid,
.section .compare-grid,
section > .container > .compare-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  align-items: stretch !important;
  box-sizing: border-box !important;
}
section .compare-grid .compare-card {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}
@media (max-width: 768px) {
  section .compare-grid,
  .section .compare-grid,
  section > .container > .compare-grid {
    grid-template-columns: 1fr !important;
  }
}

/* === BRUTAL: forca compare-grid a usar largura cheia (2026-05-11 v3) === */
html body .compare-grid,
html body main .compare-grid,
html body section .compare-grid,
html body .container .compare-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}
html body .compare-grid > .compare-card {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: none !important;
}
@media (max-width: 768px) {
  html body .compare-grid {
    grid-template-columns: 1fr !important;
  }
}
