@keyframes slideUp {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Modal de detalhes do produto */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(8px);
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(255, 193, 7, 0.10);
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.35s ease;
  padding: 0;
  animation: slideUp 0.4s ease forwards;
}

.modal-backdrop.active .modal-content {
  transform: scale(1) translateY(0);
}

.product-modal-content {
  overflow: hidden;
}

.modal-header {
  position: relative;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.product-modal-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  color: var(--text-light);
}

.modal-close:hover {
  background-color: rgba(255, 255, 255, 0.18);
  transform: rotate(90deg);
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.product-image-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.product-main-image {
  width: 100%;
  height: 280px;
  object-fit: contain;
  display: block;
}

.product-data-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-data-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b88a2f 0%, #d9bd6b 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(184, 138, 47, 0.20);
}

.product-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-data-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 14px 16px;
}

.product-data-label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #d9bd6b;
}

.product-data-value {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  word-break: break-word;
}

.product-description-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 16px;
}

.product-description-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.8;
  word-break: break-word;
  white-space: normal;
}

/* Galeria */
.modal-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.modal-gallery-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.20);
}

.modal-gallery-item.active {
  border-color: var(--accent-color);
}

.modal-gallery-item:hover {
  transform: scale(1.05);
}

/* Recursos auxiliares */
.product-feature {
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.product-feature:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.product-feature i {
  margin-right: 0.75rem;
  color: var(--accent-color);
}

/* Scroll */
.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.20);
  border-radius: 8px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.30);
}

/* Abas */
.modal-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: 1rem;
}

.modal-tab {
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.modal-tab:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.modal-tab.active {
  font-weight: 600;
  color: var(--accent-color);
}

.modal-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px 3px 0 0;
  animation: fadeIn 0.3s ease;
}

.modal-tab-content {
  display: none;
}

.modal-tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Botões */
.btn-modal-action {
  background-color: var(--custom-green);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(43, 163, 4, 0.30);
  border: none;
  cursor: pointer;
}

.btn-modal-action:hover {
  background-color: #239003;
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(43, 163, 4, 0.40);
}

.btn-modal-action i {
  margin-right: 0.5rem;
}

.btn-modal-secondary {
  background-color: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.20);
  border: none;
  cursor: pointer;
}

.btn-modal-secondary:hover {
  background-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.30);
}

.btn-modal-secondary i {
  margin-right: 0.5rem;
}

/* Quantidade */
.quantity-selector {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.10);
  border-radius: 50px;
  padding: 0.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.10);
}

.quantity-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: transparent;
  color: var(--text-light);
}

.quantity-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.quantity-input {
  width: 40px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem 0;
}

.quantity-input:focus {
  outline: none;
}

/* Destaque de preço */
#modal-product-price {
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
  animation: pulse 2s infinite;
}

/* Responsivo */
@media (max-width: 768px) {
  .modal-backdrop {
    padding: 14px;
  }

  .product-image-panel {
    min-height: 240px;
  }

  .product-main-image {
    height: 220px;
  }

  .product-data-grid {
    grid-template-columns: 1fr;
  }

  .modal-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-footer {
    flex-direction: column;
    gap: 1rem;
  }

  .modal-footer .btn-modal-action,
  .modal-footer .btn-modal-secondary {
    width: 100%;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .modal-header {
    padding: 1.1rem 1.1rem 1rem;
  }

  .modal-body {
    padding: 1.1rem;
  }

  .modal-footer {
    padding: 1rem 1.1rem 1.1rem;
  }

  .modal-tabs {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.5rem;
  }

  .modal-header h2 {
    padding-right: 2.5rem;
    font-size: 1.25rem;
  }

  .sm\:flex-row {
    flex-direction: column;
  }
}

/* ======================================================
   ESTILOS ORIGINAIS MOVIDOS DO <style> DO index.php
   Mantidos sem alterar cores, sombras, espaçamentos e layout
   ====================================================== */

		body {
			font-family: 'Poppins', sans-serif;
			background: linear-gradient(180deg, #fbfaf7 0%, #f6f1e5 100%);
			color: #2f2a1f;
		}

		.site-shell {
			max-width: 1560px;
		}

		.hero-brinex {
			background: linear-gradient(135deg, #fffdf8 0%, #f8f1df 100%);
			border: 1px solid #e6d4a4;
			box-shadow: 0 22px 55px rgba(135, 100, 29, 0.10);
			border-radius: 34px;
			position: relative;
			overflow: hidden;
		}

		.hero-brinex::before {
			content: "";
			position: absolute;
			inset: 0;
			background: radial-gradient(circle at top right, rgba(217, 189, 107, 0.18), transparent 34%);
			pointer-events: none;
		}

		.hero-badge {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			padding: 9px 18px;
			border-radius: 999px;
			border: 1px solid #dfc98f;
			background: rgba(255, 250, 236, 0.95);
			color: #9a7421;
			font-size: 13px;
			font-weight: 700;
			letter-spacing: .05em;
			text-transform: uppercase;
			box-shadow: 0 10px 20px rgba(184, 138, 47, 0.08);
		}

		.hero-logo-box {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			padding: 18px 24px;
			background: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(246,236,206,0.96) 100%);
			border: 1px solid #ead9aa;
			border-radius: 24px;
			box-shadow: 0 16px 34px rgba(164, 125, 35, 0.11);
		}

		.hero-logo {
			max-height: 84px;
			width: auto;
			display: block;
		}

		.hero-title {
			font-size: 2.8rem;
			line-height: 1.05;
			font-weight: 800;
			color: #1d1d1b;
			margin-top: 18px;
			margin-bottom: 18px;
			letter-spacing: -0.03em;
		}

		.hero-title span,
		.gold-text {
			background: linear-gradient(135deg, #8e6514 0%, #d9bd6b 50%, #b38324 100%);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			color: #b88a2f;
		}

		.hero-text {
			font-size: 1.06rem;
			line-height: 1.9;
			color: #5e5647;
			max-width: 640px;
		}

		.hero-feature {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			padding: 10px 16px;
			border-radius: 999px;
			background: rgba(255, 255, 255, 0.92);
			border: 1px solid #e7d7ad;
			color: #7f6221;
			font-size: 13px;
			font-weight: 600;
			box-shadow: 0 10px 18px rgba(184, 138, 47, 0.06);
		}

		.hero-btn-primary {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 10px;
			padding: 15px 28px;
			border-radius: 16px;
			background: linear-gradient(135deg, #b88a2f 0%, #d9bd6b 100%);
			color: #fff;
			font-weight: 700;
			box-shadow: 0 14px 30px rgba(184, 138, 47, 0.22);
			transition: all .25s ease;
			text-decoration: none;
		}

		.hero-btn-primary:hover {
			transform: translateY(-2px);
			filter: brightness(1.03);
			color: #fff;
			text-decoration: none;
		}

		.hero-btn-secondary {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 10px;
			padding: 15px 28px;
			border-radius: 16px;
			background: rgba(255,255,255,.94);
			color: #8d6617;
			border: 1px solid #e4cc8d;
			font-weight: 700;
			transition: all .25s ease;
			text-decoration: none;
		}

		.hero-btn-secondary:hover {
			background: #fff8eb;
			transform: translateY(-2px);
			color: #8d6617;
			text-decoration: none;
		}

		.hero-carousel {
			position: relative;
			overflow: hidden;
			border-radius: 28px;
			background: linear-gradient(180deg, #ffffff 0%, #fbf4e4 100%);
			border: 1px solid #ead9aa;
			box-shadow: 0 22px 46px rgba(90, 69, 20, 0.12);
		}

		.hero-carousel-inner {
			display: flex;
			transition: transform .35s ease-in-out;
			will-change: transform;
		}

		.hero-slide {
			min-width: 100%;
			position: relative;
			aspect-ratio: 900 / 500;
			overflow: hidden;
			background: #ffffff;
		}

		.hero-slide-image {
			width: 100%;
			height: 100%;
			object-fit: contain;
			object-position: center center;
			display: block;
			background: #ffffff;
		}

		.hero-slide-caption {
			position: absolute;
			left: 18px;
			right: 18px;
			bottom: 18px;
			padding: 14px 16px;
			border-radius: 18px;
			background: rgba(255, 255, 255, 0.90);
			border: 1px solid rgba(230, 210, 158, 0.90);
			backdrop-filter: blur(6px);
			box-shadow: 0 10px 22px rgba(124, 94, 26, 0.10);
		}

		.hero-slide-badge {
			display: inline-block;
			font-size: 11px;
			font-weight: 800;
			text-transform: uppercase;
			letter-spacing: .06em;
			color: #9a7421;
			margin-bottom: 4px;
		}

		.hero-slide-title {
			margin: 0;
			font-size: 15px;
			color: #2d2616;
			font-weight: 700;
		}

		.hero-arrow {
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			width: 46px;
			height: 46px;
			border-radius: 999px;
			border: 1px solid rgba(234, 217, 170, 0.95);
			background: rgba(255, 255, 255, 0.92);
			color: #9a7421;
			display: flex;
			align-items: center;
			justify-content: center;
			z-index: 2;
			transition: all .25s ease;
			box-shadow: 0 10px 24px rgba(145, 110, 31, 0.12);
		}

		.hero-arrow:hover {
			background: #fff8e8;
			transform: translateY(-50%) scale(1.04);
		}

		.hero-arrow.prev {
			left: 16px;
		}

		.hero-arrow.next {
			right: 16px;
		}

		.carousel-bullet {
			width: 12px;
			height: 12px;
			border-radius: 999px;
			border: 1px solid #d8be79;
			background: #f5e8c0;
			opacity: .55;
			transition: all .25s ease;
		}

		.carousel-bullet.active {
			width: 34px;
			opacity: 1;
			background: linear-gradient(135deg, #b88a2f 0%, #e1c97d 100%);
		}

		.category-showcase {
			background: linear-gradient(180deg, #fffdfa 0%, #f8f1df 100%);
			border: 1px solid #e8d8ae;
			box-shadow: 0 20px 42px rgba(129, 97, 30, 0.08);
			border-radius: 30px;
			position: relative;
			overflow: hidden;
		}

		.category-showcase::before {
			content: "";
			position: absolute;
			inset: 0;
			background: radial-gradient(circle at top left, rgba(217, 189, 107, 0.12), transparent 28%);
			pointer-events: none;
		}

		.category-kicker {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			border-radius: 999px;
			background: #fff7e5;
			border: 1px solid #e6d198;
			color: #9a7421;
			font-size: 11px;
			font-weight: 700;
			padding: 7px 13px;
			letter-spacing: .06em;
			text-transform: uppercase;
		}

		.category-heading {
			font-size: 1.85rem;
			font-weight: 800;
			color: #1f1d19;
			margin-top: 12px;
			margin-bottom: 8px;
			letter-spacing: -0.02em;
		}

		.category-subheading {
			max-width: 760px;
			margin: 0 auto;
			color: #6a634f;
			font-size: 0.95rem;
			line-height: 1.7;
		}

		.categories-grid {
			display: grid;
			grid-template-columns: repeat(2, minmax(0, 1fr));
			gap: 24px 10px;
			align-items: start;
			position: relative;
			z-index: 1;
		}

		.category-pill-grid {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: flex-start;
			text-align: center;
			background: transparent;
			border: 0;
			padding: 0 2px;
			transition: all .2s ease;
		}

		.category-pill-grid:hover {
			transform: translateY(-3px);
		}

		.category-icon-box {
			width: 64px;
			height: 64px;
			border-radius: 999px;
			display: flex;
			align-items: center;
			justify-content: center;
			background: linear-gradient(135deg, #f6e3a6 0%, #d9b24a 55%, #f3e7bf 100%);
			border: 2px solid #d7a538;
			box-shadow: inset 0 0 0 3px #fffdf7, 0 8px 18px rgba(177, 133, 33, 0.14);
			margin-bottom: 10px;
		}

		.category-icon-box i {
			font-size: 24px;
			color: #1f1f1b;
		}

		.category-label {
			font-size: 12px;
			line-height: 1.35;
			color: #5a5445;
			font-weight: 500;
			min-height: 32px;
			display: flex;
			align-items: flex-start;
			justify-content: center;
		}

		.about-box {
			background: linear-gradient(180deg, #fffdfa 0%, #f8f1df 100%);
			border: 1px solid #e8d8ae;
			box-shadow: 0 20px 42px rgba(129, 97, 30, 0.08);
			border-radius: 30px;
			overflow: hidden;
		}

		.about-video-box {
			background: #fff;
			border: 1px solid #e8d8ae;
			border-radius: 24px;
			overflow: hidden;
			box-shadow: 0 14px 28px rgba(129, 97, 30, 0.08);
		}

		.about-content-box {
			background: rgba(255,255,255,.55);
			border: 1px solid #eadbb3;
			border-radius: 24px;
			padding: 26px;
			box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
		}

		.about-title {
			font-size: 2.1rem;
			line-height: 1.1;
			font-weight: 800;
			color: #241f16;
			margin-top: 14px;
			margin-bottom: 14px;
		}

		.about-text {
			color: #655d4b;
			font-size: 14px;
			line-height: 1.9;
		}

		.about-mini-card {
			background: #fffdfa;
			border: 1px solid #ead8a7;
			border-radius: 18px;
			padding: 14px 16px;
			box-shadow: 0 10px 22px rgba(129, 97, 30, 0.05);
		}

		.about-mini-card-title {
			font-size: 12px;
			text-transform: uppercase;
			letter-spacing: .05em;
			color: #9a7421;
			font-weight: 700;
			margin-bottom: 4px;
		}

		.about-mini-card-text {
			font-size: 13px;
			color: #4f4737;
			font-weight: 500;
			word-break: break-word;
		}

		.faq-box {
			background: linear-gradient(180deg, #3f3218 0%, #241c0f 100%);
			border: 1px solid rgba(225, 201, 125, 0.22);
			box-shadow: 0 20px 40px rgba(28, 22, 10, 0.26);
		}

		.footer-box {
			background: linear-gradient(180deg, #2f2515 0%, #17120b 100%);
			border: 1px solid rgba(225, 201, 125, 0.20);
			box-shadow: 0 20px 42px rgba(18, 14, 8, 0.28);
			border-radius: 30px;
		}

		.footer-brand-box {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			padding: 16px 20px;
			background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
			border: 1px solid rgba(225, 201, 125, 0.20);
			border-radius: 20px;
		}

		.footer-info-card {
			background: rgba(255,255,255,0.04);
			border: 1px solid rgba(225, 201, 125, 0.16);
			border-radius: 18px;
			padding: 14px 16px;
		}

		.footer-info-label {
			font-size: 11px;
			text-transform: uppercase;
			letter-spacing: .06em;
			color: #dabb71;
			font-weight: 700;
			margin-bottom: 6px;
		}

		.footer-info-text {
			color: #f2e8d1;
			font-size: 14px;
			line-height: 1.6;
		}

		/* =========================================================
		   BLOCO: CLIENTES / CARROSSEL DE CLIENTES
		   Ajustado para ficar igual ao modelo do print
		   sem alterar a lógica do HTML ou do JavaScript
		   ========================================================= */
		.clients-carousel-section {
			width: 100%;
			margin: 0 0 28px 0;
		}

		.clients-carousel-box {
			background: #ffffff;
			border: 1px solid #e8d8ae;
			border-radius: 0;
			box-shadow: none;
			padding: 24px 28px;
			overflow: hidden;
		}

		.clients-carousel-head {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 14px;
			margin-bottom: 18px;
		}

		.clients-carousel-title {
			margin: 0;
			font-size: 15px;
			font-weight: 800;
			line-height: 1.2;
			color: #2b2b2b;
			text-transform: uppercase;
			letter-spacing: 0;
		}

		.clients-carousel-actions {
			display: flex;
			align-items: center;
			gap: 10px;
			flex-shrink: 0;
		}

		.clients-carousel-arrow {
			width: 36px;
			height: 36px;
			border: 0;
			border-radius: 6px;
			background: #b8c4cf;
			color: #ffffff;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			box-shadow: none;
			padding: 0;
			font-size: 16px;
			line-height: 1;
			transition: background .2s ease, transform .2s ease;
		}

		.clients-carousel-arrow:hover {
			background: #aab7c3;
			color: #ffffff;
			transform: none;
		}

		.clients-carousel-arrow i {
			font-size: 16px;
			line-height: 1;
			pointer-events: none;
		}

		.clients-carousel-viewport {
			width: 100%;
			overflow: hidden;
			position: relative;
			scroll-behavior: smooth;
		}

		.clients-carousel-track {
			display: flex;
			align-items: center;
			gap: 26px;
			will-change: transform;
		}

		.clients-carousel-item {
			flex: 0 0 auto;
			width: 150px;
			min-width: 150px;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.clients-carousel-link {
			width: 100%;
			height: 92px;
			display: flex;
			align-items: center;
			justify-content: center;
			text-decoration: none;
			background: transparent;
			border: 0;
			box-shadow: none;
			padding: 0;
		}

		.clients-carousel-link:hover {
			transform: none;
			text-decoration: none;
		}

		.clients-carousel-image {
			max-width: 100%;
			max-height: 86px;
			width: auto;
			height: auto;
			object-fit: contain;
			display: block;
			filter: none;
			opacity: 1;
			transition: none;
		}

		.clients-carousel-link:hover .clients-carousel-image {
			filter: none;
			opacity: 1;
			transform: none;
		}

		@media (min-width: 576px) {
			.categories-grid {
				grid-template-columns: repeat(4, minmax(0, 1fr));
			}
		}

		@media (min-width: 768px) {
			.categories-grid {
				grid-template-columns: repeat(6, minmax(0, 1fr));
			}
		}

		@media (min-width: 992px) {
			.categories-grid {
				grid-template-columns: repeat(8, minmax(0, 1fr));
			}

			.hero-brinex {
				padding: 34px !important;
			}
		}

		@media (min-width: 1200px) {
			.categories-grid {
				grid-template-columns: repeat(10, minmax(0, 1fr));
			}
		}

		@media (min-width: 1400px) {
			.categories-grid {
				grid-template-columns: repeat(12, minmax(0, 1fr));
			}
		}

		@media (max-width: 991px) {
			.hero-title {
				font-size: 2.2rem;
			}
		}

		@media (max-width: 768px) {
			.hero-brinex {
				padding: 18px;
				border-radius: 24px;
			}

			.hero-title {
				font-size: 1.85rem;
			}

			.hero-logo {
				max-height: 62px;
			}

			.hero-slide-caption {
				left: 10px;
				right: 10px;
				bottom: 10px;
				padding: 10px 12px;
			}

			.hero-slide-title {
				font-size: 13px;
			}

			.hero-slide-badge {
				font-size: 10px;
			}

			.category-heading {
				font-size: 1.55rem;
			}

			.category-icon-box {
				width: 58px;
				height: 58px;
			}

			.category-icon-box i {
				font-size: 21px;
			}

			.about-title {
				font-size: 1.7rem;
			}

			.about-content-box {
				padding: 18px;
			}

			.clients-carousel-box {
				padding: 18px 16px;
			}

			.clients-carousel-head {
				margin-bottom: 14px;
				align-items: center;
			}

			.clients-carousel-title {
				font-size: 14px;
			}

			.clients-carousel-actions {
				gap: 8px;
			}

			.clients-carousel-track {
				gap: 16px;
			}

			.clients-carousel-item {
				width: 120px;
				min-width: 120px;
			}

			.clients-carousel-link {
				height: 74px;
			}

			.clients-carousel-image {
				max-height: 62px;
			}

			.clients-carousel-arrow {
				width: 34px;
				height: 34px;
				border-radius: 6px;
				font-size: 15px;
			}

			.clients-carousel-arrow i {
				font-size: 15px;
				width: auto;
				height: auto;
			}
		}

/* =========================
   MODAL PRODUTO - AJUSTE FINAL
   ========================= */
body.modal-produto-open {
	overflow: hidden !important;
}

#product-modal {
	position: fixed !important;
	inset: 0 !important;
	display: none;
	align-items: flex-start;
	justify-content: center;
	padding: 12px 18px;
	background: rgba(0, 0, 0, 0.30);
	z-index: 999999 !important;
	opacity: 0;
	visibility: hidden;
	overflow-y: auto;
	transition: opacity .22s ease, visibility .22s ease;
}

#product-modal.active {
	display: flex !important;
	opacity: 1 !important;
	visibility: visible !important;
}

#product-modal .modal-content.product-modal-content {
	width: min(1320px, calc(100vw - 36px));
	max-height: none;
	overflow: visible;
	background: #f7f7f7;
	border: 0;
	border-radius: 0;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
	transform: translateY(10px);
	transition: transform .22s ease, opacity .22s ease;
	opacity: 0;
	margin: 10px auto;
	position: relative;
}

#product-modal.active .modal-content.product-modal-content {
	transform: translateY(0);
	opacity: 1;
}

.product-modal-close-fixed {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 30;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #1f2937;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.product-modal-top-title-wrap {
	padding: 22px 30px 0;
}

.product-modal-top-title {
	margin: 0;
	font-size: 2.05rem;
	line-height: 1.1;
	font-weight: 800;
	color: #1f2a3a;
	text-transform: uppercase;
}

.product-modal-launch {
	display: inline-flex;
	align-items: center;
	margin-top: 8px;
	padding: 4px 10px;
	background: #57adf5;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.product-modal-layout-print {
	display: grid;
	grid-template-columns: minmax(480px, 44%) 1fr;
	min-height: auto;
	padding: 0 24px 24px;
	align-items: start;
}

.product-modal-gallery-side-print {
	padding: 6px 18px 20px 0;
	background: transparent;
	border-right: 0;
}

.product-modal-main-stage-print {
	min-height: 430px;
	background: transparent;
}

.product-modal-hero-image {
	max-width: 100%;
	max-height: 430px;
	object-fit: contain;
	display: block;
}

.product-modal-arrow {
	display: none !important;
}

.product-modal-thumbs-print {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 18px;
}

.product-modal-thumb {
	width: 68px;
	height: 68px;
	border: 1px solid #d1d5db;
	background: #ffffff;
	padding: 4px;
	cursor: pointer;
}

.product-modal-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.product-modal-thumb.active {
	border-color: #111827;
}

.product-modal-note {
	margin-top: 12px;
	color: #9ca3af;
	font-size: 13px;
}

.product-modal-info-side-print {
	padding: 8px 12px 24px 16px;
	overflow: visible;
	background: transparent;
}

.product-modal-brand-wrap {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 10px;
}

.product-modal-brand-logo {
	max-width: 70px;
	height: auto;
	display: block;
}

.product-modal-meta-print {
	margin-bottom: 10px;
}

.product-modal-meta-item {
	font-size: 17px;
	line-height: 1.7;
	color: #4b5563;
}

.product-modal-meta-item strong {
	color: #111827;
}

.product-modal-section-title {
	font-size: 1.2rem;
	line-height: 1.2;
	font-weight: 800;
	color: #111827;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.product-modal-divider {
	width: 140px;
	height: 2px;
	background: #d33a3a;
	margin-bottom: 18px;
}

.product-modal-description {
	color: #4b5563;
	font-size: 17px;
	line-height: 1.7;
	white-space: pre-line;
	margin-bottom: 20px;
}

.product-modal-extra-meta {
	margin-bottom: 14px;
}

.product-modal-options-box {
	padding-top: 8px;
	border-top: 1px solid #d9d9d9;
}

.product-modal-label {
	display: block;
	margin-bottom: 8px;
	color: #111827;
	font-size: 15px;
	font-weight: 700;
}

.product-modal-observacao {
	width: 100%;
	min-height: 62px;
	resize: vertical;
	border: 1px solid #d1d5db;
	border-radius: 12px;
	padding: 14px 16px;
	color: #374151;
	outline: none;
	background: #ffffff;
}

.product-modal-actions {
	display: flex;
	width: 100%;
	margin-top: 16px;
	padding-bottom: 8px;
}

.product-modal-qty {
	display: none !important;
}
.product-modal-budget-btn {
	width: 100%;
	min-height: 50px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, #b88a2f 0%, #d9bd6b 100%);
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 800;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0 14px 30px rgba(184, 138, 47, 0.22);
	transition: all .25s ease;
}

.product-modal-budget-btn:hover {
	color: #ffffff;
	text-decoration: none;
	filter: brightness(1.03);
	transform: translateY(-1px);
}

@media (max-width: 991px) {
	#product-modal {
		padding: 10px;
	}

	#product-modal .modal-content.product-modal-content {
		width: calc(100vw - 20px);
		margin: 0 auto;
	}

	.product-modal-top-title-wrap {
		padding: 18px 18px 0;
	}

	.product-modal-layout-print {
		grid-template-columns: 1fr;
		padding: 0 18px 18px;
	}

	.product-modal-gallery-side-print {
		padding-right: 0;
		padding-bottom: 10px;
	}

	.product-modal-main-stage-print {
		min-height: 320px;
	}

	.product-modal-hero-image {
		max-height: 360px;
	}

	.product-modal-top-title {
		font-size: 1.55rem;
	}
}

@media (max-width: 768px) {
	.product-modal-actions {
		flex-direction: column;
	}

.product-modal-qty {
	display: none !important;
}
	.product-modal-top-title {
		font-size: 1.25rem;
		padding-right: 36px;
	}

	.product-modal-meta-item,
	.product-modal-description {
		font-size: 15px;
	}

	.product-modal-thumb {
		width: 58px;
		height: 58px;
	}
}
  .brinex-vitrine-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #d9d9d9;
	border-radius: 14px;
	overflow: hidden;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.brinex-vitrine-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
	border-color: #cfcfcf;
}

.brinex-vitrine-media {
	height: 336px;
	padding: 18px;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brinex-vitrine-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.brinex-vitrine-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 14px 16px 20px;
	background: #ffffff;
}

.brinex-vitrine-code {
	font-size: 1.05rem;
	line-height: 1.2;
	font-weight: 800;
	color: #0f172a;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.brinex-vitrine-title {
	min-height: 52px;
	font-size: 0.98rem;
	line-height: 1.35;
	color: #1f2937;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.brinex-vitrine-action {
	margin-top: auto;
	display: flex;
	justify-content: center;
}

.brinex-vitrine-btn {
	min-width: 200px;
	height: 44px;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	background: #e8e8e8;
	color: #1f2937;
	font-size: 1rem;
	font-weight: 500;
	transition: background .18s ease, transform .18s ease;
}

.brinex-vitrine-btn:hover {
	background: #dddddd;
	transform: translateY(-1px);
}

.products-results-grid {
	align-items: stretch;
    
}
	
/* =========================================================
   BLOCO: CARROSSEL DE TODOS OS PRODUTOS
   ========================================================= */

/* SEÇÃO GERAL */
.brinex-all-products-section {
	position: relative;
	padding: 40px 0 20px 0;
	background: #f7f7f7;
}

/* CABEÇALHO */
.brinex-all-products-header {
	text-align: center;
	margin-bottom: 24px;
	padding: 0 20px;
}

.brinex-all-products-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	background: #f4ead2;
	color: #b88a2f;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	margin-bottom: 12px;
}

.brinex-all-products-title {
	margin: 0 0 8px 0;
	font-size: 32px;
	line-height: 1.1;
	font-weight: 800;
	color: #1f2a3a;
}

.brinex-all-products-subtitle {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: #6b7280;
}

/* CASCA DO CARROSSEL */
.brinex-all-products-carousel {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 48px 10px 48px;
}
.brinex-carousel-dots{
	display: none !important;
}

/* TRILHO */
.brinex-carousel-track {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	padding: 6px 0 16px 0;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.brinex-carousel-track::-webkit-scrollbar {
	display: none;
}

/* ITEM */
.brinex-carousel-item {
	flex: 0 0 198px;
	scroll-snap-align: start;
}

/* CARD */
.brinex-carousel-card {
	height: 100%;
	min-height: 330px;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: 18px;
	padding: 14px 14px 16px 14px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease;
}

.brinex-carousel-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

/* IMAGEM */
.brinex-carousel-image-box {
	height: 165px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.brinex-carousel-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

/* TÍTULO */
.brinex-carousel-title {
	min-height: 66px;
	font-size: 15px;
	line-height: 1.25;
	font-weight: 500;
	color: #2f3542;
	text-align: center;
	margin-bottom: 8px;
}

/* CÓDIGO */
.brinex-carousel-code {
	font-size: 13px;
	line-height: 1.2;
	font-weight: 700;
	color: #7b8190;
	text-align: center;
	margin-bottom: 12px;
	text-transform: uppercase;
}

/* AÇÃO */
.brinex-carousel-action {
	margin-top: auto;
}

/* BOTÃO */
.brinex-carousel-btn {
	width: 100%;
	height: 40px;
	border: 0;
	border-radius: 999px;
	background: #fac87d;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .03em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: filter .18s ease, transform .18s ease;
}

.brinex-carousel-btn:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
}

/* BOTÕES DE NAVEGAÇÃO */
.brinex-carousel-nav {
	position: absolute;
	top: 42%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 4px;
	background: #0d3b66;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	z-index: 3;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.brinex-carousel-prev {
	left: 6px;
}

.brinex-carousel-next {
	right: 6px;
}

.brinex-carousel-nav[disabled] {
	opacity: .35;
	cursor: not-allowed;
}

/* DOTS */
.brinex-carousel-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
}

.brinex-carousel-dot {
	width: 9px;
	height: 9px;
	border: 0;
	border-radius: 999px;
	background: #c9ced6;
	cursor: pointer;
	padding: 0;
}

.brinex-carousel-dot.active {
	background: #8d000b;
}

/* RESPONSIVO */
@media (max-width: 991px) {
	.brinex-all-products-carousel {
		padding: 0 42px 32px 42px;
	}

	.brinex-carousel-item {
		flex: 0 0 210px;
	}
}

@media (max-width: 768px) {
	.brinex-all-products-title {
		font-size: 24px;
	}

	.brinex-all-products-subtitle {
		font-size: 14px;
	}

	.brinex-all-products-carousel {
		padding: 0 36px 30px 36px;
	}

	.brinex-carousel-item {
		flex: 0 0 78%;
	}

	.brinex-carousel-card {
		min-height: 320px;
	}

	.brinex-carousel-nav {
		top: 40%;
		width: 30px;
		height: 30px;
		font-size: 24px;
	}
}