/* ============================================= */
/* INCOART — identidade: geométrico + artesanal   */
/* ============================================= */

:root {
  --vermelho: #C73A3A;
  --vermelho-escuro: #9e2e2e;
  --preto: #1C1C1C;
  --cinza: #6F6F6F;
  --bege: #E8E3DC;
  --branco: #FFFFFF;
  --sombra-soft: 0 12px 40px rgba(28, 28, 28, 0.08);
  --radius: 10px;
  --header-h: 88px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: "Open Sans", system-ui, sans-serif;
  background: var(--bege);
  color: var(--preto);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  color: var(--preto);
  letter-spacing: -0.02em;
}

a {
  color: var(--vermelho);
}

a:hover {
  color: var(--vermelho-escuro);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 22px;
}

.container--narrow {
  max-width: 760px;
}

/* ---------- Navbar (fundo bege, menu escuro) ---------- */
.navbar {
  background: var(--bege);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(28, 28, 28, 0.06);
  padding: 14px 0;
  border-bottom: 1px solid rgba(28, 28, 28, 0.06);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.navbar-logo img {
  height: clamp(52px, 8vw, 68px);
  width: auto;
  display: block;
}

.navbar-menu ul {
  display: flex;
  list-style: none;
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.navbar-menu a {
  color: var(--preto);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--vermelho);
}

.btn-cta {
  background: var(--vermelho);
  color: var(--branco) !important;
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  background: var(--vermelho-escuro);
  transform: translateY(-1px);
}

.btn-primary {
  display: inline-block;
  background: var(--vermelho);
  color: var(--branco) !important;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: var(--vermelho-escuro);
}

.btn-outline {
  display: inline-block;
  color: var(--preto) !important;
  padding: 11px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--preto);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background: var(--preto);
  color: var(--branco) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--preto);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  background: var(--bege);
  padding: 20px 22px 28px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  z-index: 999;
  border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--preto);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

/* ---------- Hero + padrão geométrico ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  margin-top: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 22px 80px;
  background: var(--bege);
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-color: var(--bege);
  background-image:
    linear-gradient(30deg, rgba(199, 58, 58, 0.07) 12%, transparent 12.5%, transparent 87%, rgba(199, 58, 58, 0.07) 87.5%, rgba(199, 58, 58, 0.07)),
    linear-gradient(150deg, rgba(199, 58, 58, 0.07) 12%, transparent 12.5%, transparent 87%, rgba(199, 58, 58, 0.07) 87.5%, rgba(199, 58, 58, 0.07)),
    linear-gradient(30deg, rgba(28, 28, 28, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(28, 28, 28, 0.04) 87.5%, rgba(28, 28, 28, 0.04)),
    linear-gradient(150deg, rgba(28, 28, 28, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(28, 28, 28, 0.04) 87.5%, rgba(28, 28, 28, 0.04));
  background-size: 48px 84px;
  background-position: 0 0, 0 0, 24px 42px, 24px 42px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-kicker {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cinza);
  margin-bottom: 12px;
}

.hero-logo-mark {
  margin: 4px auto 14px;
}

.hero-logo-mark img {
  display: block;
  max-width: min(280px, 88vw);
  height: auto;
  margin: 0 auto;
}

.tagline {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: var(--vermelho);
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--cinza);
  max-width: 560px;
  margin: 0 auto 12px;
}

.mobile-menu .mobile-whatsapp-cta {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(28, 28, 28, 0.1);
  color: var(--vermelho) !important;
  border-bottom: none;
}

/* ---------- Seções ---------- */
.section {
  padding: 88px 0;
  position: relative;
}

.section h2 {
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  text-align: center;
  margin-bottom: 18px;
}

.section-intro {
  text-align: center;
  color: var(--cinza);
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

.lead {
  font-size: 1.12rem;
  margin-bottom: 18px;
  text-align: center;
}

.section--white {
  background: var(--branco);
}

.section--bege {
  background: var(--bege);
}

.section-pattern-light::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(111, 111, 111, 0.06) 8px,
    rgba(111, 111, 111, 0.06) 9px
  );
  pointer-events: none;
}

.section-pattern-light .container {
  position: relative;
  z-index: 1;
}

.container--narrow p {
  text-align: center;
  margin-bottom: 16px;
  color: var(--cinza);
}

.container--narrow p strong {
  color: var(--preto);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.feature-card {
  background: var(--branco);
  padding: 28px 22px;
  border-radius: var(--radius);
  box-shadow: var(--sombra-soft);
  border: 1px solid rgba(28, 28, 28, 0.06);
  transition: transform 0.25s ease;
}

.section--bege .feature-card {
  background: rgba(255, 255, 255, 0.72);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-square {
  display: block;
  width: 28px;
  height: 28px;
  background: var(--vermelho);
  border-radius: 4px;
}

.geo-diamond {
  display: block;
  width: 26px;
  height: 26px;
  background: var(--preto);
  transform: rotate(45deg);
  border-radius: 3px;
}

.geo-triangle {
  display: block;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 28px solid var(--vermelho);
}

.geo-circle {
  display: block;
  width: 28px;
  height: 28px;
  border: 4px solid var(--preto);
  border-radius: 50%;
  background: transparent;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--cinza);
}

/* Duas colunas + stack visual */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col__text p {
  color: var(--cinza);
  margin-bottom: 16px;
}

.two-col__text h2 {
  text-align: left;
  margin-bottom: 16px;
}

.two-col__text .btn-primary {
  margin-top: 8px;
}

.tile-stack {
  position: relative;
  height: 280px;
  max-width: 320px;
  margin: 0 auto;
}

.tile-stack__layer {
  position: absolute;
  border-radius: 8px;
  border: 2px solid rgba(28, 28, 28, 0.12);
}

.tile-stack__layer--1 {
  width: 88%;
  height: 72%;
  left: 0;
  top: 10%;
  background: linear-gradient(135deg, rgba(199, 58, 58, 0.2), rgba(232, 227, 220, 0.9));
  z-index: 1;
}

.tile-stack__layer--2 {
  width: 88%;
  height: 72%;
  right: 0;
  top: 0;
  background: repeating-linear-gradient(
    90deg,
    var(--bege),
    var(--bege) 12px,
    rgba(28, 28, 28, 0.06) 12px,
    rgba(28, 28, 28, 0.06) 24px
  );
  z-index: 2;
}

.tile-stack__layer--3 {
  width: 70%;
  height: 58%;
  left: 15%;
  bottom: 0;
  background: var(--preto);
  opacity: 0.9;
  z-index: 3;
}

/* Produtos em destaque (galeria + cards) */
.destaque-gallery {
  margin-bottom: 28px;
}

.destaque-gallery figure {
  margin: 0;
}

.destaque-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(28, 28, 28, 0.08);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--sombra-soft);
}

.destaque-gallery figcaption {
  font-size: 0.82rem;
  color: var(--cinza);
  margin-top: 8px;
  text-align: center;
  line-height: 1.35;
}

.destaque-gallery--triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: start;
}

/* Onde encontrar */
.lojas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 8px;
  align-items: stretch;
}

.loja-card {
  background: var(--bege);
  padding: 24px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(28, 28, 28, 0.08);
  box-shadow: var(--sombra-soft);
  display: flex;
  flex-direction: column;
}

.section--white .loja-card {
  background: var(--branco);
}

.loja-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.loja-card p {
  color: var(--cinza);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.loja-endereco {
  font-weight: 600;
  color: var(--preto) !important;
  margin-bottom: 8px !important;
}

.loja-tel {
  font-size: 0.95rem;
  margin-bottom: 6px !important;
  color: var(--cinza);
}

.loja-tel a {
  color: var(--preto);
  font-weight: 600;
  text-decoration: none;
}

.loja-tel a:hover {
  color: var(--vermelho);
  text-decoration: underline;
}

.loja-tel--wa a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #128c7e;
  font-weight: 600;
}

.loja-tel--wa a:hover {
  color: #075e54;
}

.loja-tel--wa i {
  font-size: 1.25rem;
  color: #25d366;
}

.loja-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.loja-actions--solo {
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(28, 28, 28, 0.08);
}

.btn-outline--sm {
  padding: 9px 18px;
  font-size: 0.88rem;
}

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

.product-cards--wide {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.product-card {
  background: var(--branco);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(28, 28, 28, 0.08);
  box-shadow: var(--sombra-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-card__thumb {
  position: relative;
  height: 200px;
  background-color: var(--bege);
  overflow: hidden;
}

.product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__thumb--pattern {
  background-image:
    linear-gradient(45deg, var(--vermelho) 25%, transparent 25%),
    linear-gradient(-45deg, var(--vermelho) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(28, 28, 28, 0.15) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(28, 28, 28, 0.15) 75%);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0px;
}

.product-card__thumb--b {
  background-image: radial-gradient(circle at 30% 40%, rgba(199, 58, 58, 0.35) 0, transparent 45%),
    linear-gradient(135deg, var(--bege) 25%, transparent 25%),
    linear-gradient(225deg, var(--preto) 20%, transparent 20%);
  background-size: 100% 100%, 20px 20px, 100% 100%;
}

.product-card__thumb--c {
  background-image: repeating-linear-gradient(0deg, var(--preto), var(--preto) 2px, transparent 2px, transparent 16px),
    repeating-linear-gradient(90deg, var(--bege), var(--bege) 8px, rgba(199, 58, 58, 0.25) 8px, rgba(199, 58, 58, 0.25) 16px);
}

.product-card__thumb--d {
  background-image: radial-gradient(circle, var(--preto) 3px, transparent 3.5px);
  background-size: 18px 18px;
  background-color: var(--bege);
}

.product-card__thumb--placeholder {
  background-image: radial-gradient(circle, var(--preto) 3px, transparent 3.5px);
  background-size: 18px 18px;
  background-color: var(--bege);
}

.product-card h3 {
  padding: 18px 18px 6px;
  font-size: 1.1rem;
}

.product-card p {
  padding: 0 18px 12px;
  font-size: 0.92rem;
  color: var(--cinza);
  flex: 1;
}

.link-arrow {
  padding: 0 18px 18px;
  font-weight: 600;
  color: var(--vermelho);
  text-decoration: none;
}

.link-arrow:hover {
  color: var(--vermelho-escuro);
}

.catalog-cta {
  text-align: center;
  margin-top: 40px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px dashed rgba(199, 58, 58, 0.35);
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.catalog-cta p {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--preto);
}

.catalog-cta__secondary {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cinza);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.catalog-cta__secondary:hover {
  color: var(--vermelho);
  border-bottom-color: var(--vermelho);
}

/* Quotes */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.quote-card {
  background: var(--bege);
  padding: 26px;
  border-radius: var(--radius);
  border-left: 4px solid var(--vermelho);
  font-style: normal;
}

.quote-card p {
  color: var(--cinza);
  margin-bottom: 12px;
  font-size: 1rem;
}

.quote-card cite {
  font-size: 0.9rem;
  color: var(--preto);
  font-style: normal;
  font-weight: 600;
}

/* Contato */
.contato {
  background: var(--preto);
  color: var(--branco);
}

.contato .container {
  max-width: 800px;
}

.contato h2 {
  color: var(--branco);
}

.contato-lead--center {
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.contato-endereco-bloco {
  text-align: center;
  margin-bottom: 20px;
}

.contato-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.contato-address {
  font-style: normal;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--branco);
}

.contato-map-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 28px;
  min-height: 320px;
  background: #222;
}

.contato-map-wrap iframe {
  display: block;
  width: 100%;
  height: min(420px, 55vh);
  border: 0;
}

.contato-canais {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 40px;
  padding-top: 8px;
}

.contato-canal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contato-canal:hover {
  opacity: 0.88;
}

.contato-canal--wa {
  font-weight: 600;
  color: #25d366;
}

.contato-canal--wa i {
  font-size: 2.25rem;
  line-height: 1;
}

.contato-canal--stack {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.contato-wa-num {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Footer */
.footer {
  background: #141414;
  color: #a8a8a8;
  padding: 40px 0 0;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
}

.footer-brand {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 4px;
}

.logo-highlight {
  color: var(--vermelho);
}

.footer-tagline {
  font-size: 0.9rem;
  color: #999;
}

.footer-center {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-center a {
  color: #ccc;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-center a:hover {
  color: var(--vermelho);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: #ccc;
  font-size: 1.5rem;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--vermelho);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 18px 22px 24px;
  text-align: center;
  font-size: 0.88rem;
  color: #888;
}

.footer-bottom strong {
  color: #bbb;
  font-weight: 600;
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25d366;
  color: var(--branco) !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

/* Animação leve */
.geo-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* Página produtos */
.produtos-page {
  margin-top: var(--header-h);
  padding: 56px 0 96px;
  background: var(--bege);
  flex: 1;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  margin-bottom: 10px;
}

.page-subtitle {
  color: var(--cinza);
  font-size: 1.05rem;
}

.produtos-content {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

.filtro-lateral {
  background: var(--branco);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(28, 28, 28, 0.08);
  box-shadow: var(--sombra-soft);
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.filtro-lateral h3 {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.filtro-grupo {
  margin-bottom: 20px;
}

.filtro-grupo h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cinza);
  margin-bottom: 8px;
}

.filtro-grupo ul {
  list-style: none;
}

.filtro-grupo a {
  display: block;
  padding: 6px 0;
  color: var(--preto);
  text-decoration: none;
  font-size: 0.95rem;
}

.filtro-grupo a:hover {
  color: var(--vermelho);
}

.filtro-lista .filtro-lista__grupo {
  list-style: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--cinza);
  margin: 14px 0 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(28, 28, 28, 0.1);
}

.filtro-lista .filtro-lista__grupo:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.produto-card {
  background: var(--branco);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(28, 28, 28, 0.08);
  box-shadow: var(--sombra-soft);
  display: flex;
  flex-direction: column;
}

.produto-imagem {
  height: 220px;
  background: var(--bege);
  overflow: hidden;
}

.produto-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.produto-imagem--a {
  background-image: linear-gradient(45deg, var(--vermelho) 25%, transparent 25%),
    linear-gradient(-45deg, var(--vermelho) 25%, transparent 25%);
  background-size: 20px 20px;
}

.produto-imagem--b {
  background-image: radial-gradient(circle at 40% 50%, rgba(199, 58, 58, 0.4), transparent 50%),
    linear-gradient(180deg, var(--bege), #ddd5c8);
}

.produto-imagem--c {
  background-image: repeating-linear-gradient(90deg, var(--preto), var(--preto) 4px, var(--bege) 4px, var(--bege) 20px);
}

.produto-imagem--d {
  background-image: radial-gradient(var(--preto) 2.5px, transparent 3px);
  background-size: 16px 16px;
  background-color: var(--bege);
}

.produto-info {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.produto-info h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.produto-info p {
  font-size: 0.94rem;
  color: var(--cinza);
  flex: 1;
  margin-bottom: 16px;
}

.btn-orcamento {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding: 12px 20px;
  background: var(--vermelho);
  color: var(--branco) !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 14px rgba(199, 58, 58, 0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-orcamento i {
  font-size: 1.15rem;
}

.btn-orcamento:hover {
  background: var(--vermelho-escuro);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(199, 58, 58, 0.45);
}

.produtos-ref {
  margin-top: 48px;
  padding: 28px;
  background: var(--branco);
  border-radius: 12px;
  border: 1px solid rgba(28, 28, 28, 0.08);
  text-align: center;
  box-shadow: var(--sombra-soft);
}

.produtos-ref h2 {
  margin-bottom: 8px;
}

.produtos-ref p {
  color: var(--cinza);
  margin-bottom: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  line-height: 1.65;
}

.produtos-ref__sub {
  margin-bottom: 22px !important;
}

.produtos-ref__sub a {
  color: var(--vermelho);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.produtos-ref__sub a:hover {
  color: var(--vermelho-escuro);
}

.tintas-embed-wrap {
  max-width: 540px;
  margin: 8px auto 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(28, 28, 28, 0.1);
  box-shadow: var(--sombra-soft);
  background: var(--bege);
}

.tintas-embed-wrap iframe {
  display: block;
  width: 100%;
  min-height: 560px;
  border: 0;
}

/* Responsivo */
@media (max-width: 992px) {
  .navbar-menu,
  .btn-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .two-col__text h2 {
    text-align: center;
  }

  .two-col__text .btn-primary {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  .destaque-gallery--triple {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .produtos-content {
    grid-template-columns: 1fr;
  }

  .filtro-lateral {
    position: static;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
  }

  .contato-canais {
    flex-direction: column;
    gap: 18px;
  }

  .tintas-embed-wrap iframe {
    min-height: 480px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .geo-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .feature-card:hover,
  .product-card:hover,
  .whatsapp-float:hover,
  .btn-orcamento:hover {
    transform: none;
  }
}
