:root {
  /* Colors */
  --primary: #c62828;
  /* Red from logo */
  --secondary: #4caf50;
  /* Green for WhatsApp */
  --text-dark: #333333;
  --text-gray: #666666;
  --text-light: #999999;
  --border-color: #676767;
  --white: #ffffff;

  /* Typography */
  --font-family: "Mulish", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-size-xs: 11px;
  --font-size-sm: 13px;
  --font-size-md: 15px;
  --font-size-lg: 17px;
}

h2.sub-title {
  font-size: var(--font-size-lg);
}

.btn {
  background: #222431;
  border: 1px solid #222431;
  color: #fff;
  letter-spacing: 0.6px;
  border-radius: 0;
  padding: 9px 22px;
  font-size: 14px;
  border-radius: 5px;
}

.mw-160 {
  min-width: 160px;
}

.btn.btn-sm {
  min-width: 0;
}

.btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

body {
  font-family: var(--font-family);
  background-color: var(--white);
  color: var(--text-gray);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  transition: color 0.2s;
}

#full-screen-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#full-screen-loader .spinner-border {
  width: 3rem;
  height: 3rem;
}

/* Top Bar */
.top-bar {
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
  font-size: var(--font-size-md);
}

/* Location Selector */
.location-selector {
  position: relative;
}

.location-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #3f3e3e;
  padding: 4px 10px 4px 0;
  color: #3f3e3e;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  height: 36px;
  min-width: 246px;
  cursor: pointer;
}

.location-toggle:focus {
  outline: 2px solid rgba(198, 40, 40, 0.4);
  outline-offset: 2px;
}

.location-icon-box {
  background: #444;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -1px;
}

.location-icon-img {
  width: 22px;
  filter: invert(1);
}

.location-toggle .fa-bars {
  color: #3f3e3e;
}

.location-toggle .fa-chevron-down {
  color: #777;
  font-size: 10px;
}

.location-dropdown {
  position: absolute;
  top: calc(100%);
  left: 0;
  width: 100%;
  min-width: 240px;
  max-height: 440px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  border: 1px solid #ccc;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 1001;
}

.location-dropdown.show {
  display: block;
}

.location-option {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #3f3e3e;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid #e1e1e1;
}

.location-option:last-child {
  border-bottom: none;
}

.location-option:hover {
  background: #dbdbdb;
}

.location-option.active {
  background: var(--primary);
  color: #fff;
}

/* Top Bar Items */
.info-item {
  color: var(--text-gray);
}

.info-item span {
  color: var(--primary);
  font-weight: 600;
}

.info-icon {
  width: 25px;
  margin-right: 10px;
}

.separator {
  color: var(--primary);
  font-weight: 300;
}

/* Social Icons */
.social-icon {
  width: 38px;
  height: 38px;
}

/* Main Header */
.logo-img {
  width: 246px;
  height: auto;
}

.main-header.sticky-top {
  z-index: 1000 !important;
}

/* Navbar Customization */
.navbar-nav .nav-link {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: #3f3e3e !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}

.nav-separator {
  color: #3f3e3e;
  font-size: 10px;
  margin: 0 5px;
}

.navbar>.container {
  border-bottom: 1px solid var(--border-color);
}

/* Offcanvas Customization */
.offcanvas-title {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Action Buttons */
.action-btn {
  width: 54px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  position: relative;
}

.action-btn img {
  width: 54px;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #333;
  color: white;
  font-size: 10px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-color: white;
  border-radius: 50%;
  font-weight: bold;
}

/* Responsive Adjustments - Intermediate Screens */

@media (min-width: 1199.98px) and (max-width: 1399.98px) {
  .logo-img {
    width: 200px;
  }

  .navbar-nav .nav-link {
    padding-right: 5px !important;
    padding-left: 5px !important;
  }

  .mx-3.separator {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .logo-img {
    width: 150px;
  }

  .navbar-nav .nav-link {
    font-size: x-small;
    padding-right: 2px !important;
    padding-left: 2px !important;
  }

  .mx-3.separator {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .top-bar {
    font-size: x-small;
  }

  .info-icon {
    margin-right: 0;
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .logo-img {
    width: 150px;
  }

  .navbar-nav {
    padding: 20px 0;
    text-align: center;
  }

  .nav-separator {
    display: none;
  }

  .header-actions {
    margin-top: 10px;
    justify-content: center;
  }
}

/* Category Bar */
.category-bar {
  background-color: #f5f5f5;
  padding: 15px 0;
}

.category-btn-wrapper {
  width: 246px;
  flex-shrink: 0;
}

.category-btn {
  width: 100%;
  background-color: var(--white);
  border: 1px solid #3f3e3e;
  border-radius: 0;
  padding: 10px 15px;
  color: #3f3e3e;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.category-btn:hover {
  background-color: #f9f9f9;
  color: var(--primary);
  border-color: var(--primary);
}

.category-btn i {
  color: #3f3e3e;
}

.category-btn:hover i {
  color: var(--primary);
}

.category-icons-list {
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 5px;
  justify-content: flex-end;
  scrollbar-width: none;
}

.category-icons-list::-webkit-scrollbar {
  display: none;
}

.cat-icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: transform 0.2s;
}

.cat-icon-item:hover {
  transform: scale(1.1);
}

.cat-icon-item img {
  height: 32px;
  width: auto;
  filter: invert(18%) sepia(88%) saturate(5833%) hue-rotate(356deg) brightness(93%) contrast(92%);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.cat-icon-item:hover img {
  opacity: 1;
}

.scroll-arrow {
  padding-left: 15px;
}

.category-menu {
  position: relative;
  flex-shrink: 0;
}

.category-dropdown {
  position: absolute;
  top: calc(100%);
  left: 0;
  background: #f5f5f5;
  border: 1px solid #ccc;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  min-width: 320px;
  z-index: 1100;
  padding: 0;
  display: none;
  overflow: visible;
}

.category-dropdown.show {
  display: block;
}

.category-dropdown .category-level {
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 260px;
}

.category-dropdown .menu-item {
  position: relative;
}

.category-dropdown .menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  color: #3f3e3e;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #e6e6e6;
  background: #f5f5f5;
}

.category-dropdown .menu-link:hover {
  background: #ededed;
  color: var(--primary);
}

.category-dropdown .menu-item:last-child>.menu-link {
  border-bottom: none;
}

.category-dropdown .menu-item .chevron {
  margin-left: auto;
  color: #999;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
}

.category-dropdown .menu-item.has-children>.menu-link .chevron {
  color: var(--primary);
}

.category-dropdown .menu-link .chevron i {
  transition: transform 0.2s ease;
}

.category-dropdown .submenu {
  position: absolute;
  top: 0;
  left: 100%;
  right: auto;
  min-width: 260px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 6px 0 16px rgba(0, 0, 0, 0.08);
  display: none;
}

.category-dropdown .submenu .menu-link {
  background: #fff;
}

.category-dropdown .submenu .submenu {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  display: none;
  box-shadow: none;
  border: 0;
  border-top: 1px solid #e6e6e6;
  background: #f9f9f9;
  padding-left: 0;
}

.category-dropdown .has-children.open>.submenu {
  display: block;
}

.category-dropdown .submenu .submenu .menu-link {
  padding-left: 28px;
  background: #f9f9f9;
}

.category-dropdown .submenu .submenu .menu-link:hover {
  background: #e6e6e6;
  color: var(--primary);
}

.category-dropdown .submenu .has-children.open>.submenu {
  background: #f1f1f1;
  border-left: 3px solid var(--primary);
  padding: 6px 0;
  box-shadow: inset 0 1px 0 #e6e6e6;
}

.category-dropdown .submenu .has-children.open>.submenu .menu-link {
  background: transparent;
  color: #444;
  font-weight: 700;
}

.category-dropdown .submenu .has-children.open>.submenu .menu-link:hover {
  background: #e6e6e6;
  color: var(--primary);
}

.category-dropdown .has-children.open>.menu-link,
.category-dropdown .menu-link.is-active {
  background: #eaeaea;
  color: var(--primary);
  border-color: #dcdcdc;
}

.category-dropdown .submenu .has-children.open>.menu-link .chevron i {
  transform: rotate(90deg);
}

/* Catalogo */
@media (min-width: 992px) {
  .catalog-banner {
    background-image: url('../../assets/img/bg-catalogo.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* Seja cliente */
.seja-cliente-section input.form-control {
  background-color: transparent;
  border-radius: 0;
  border: 1px solid #ccc;
  color: #fff;
}

.seja-cliente-banner {
  background-image: url('../../assets/img/bg-seja-cliente.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.seja-cliente-section .grupo-fortpel-logo {
  left: 0;
  right: 0;
}

.seja-cliente-section .grupo-fortpel-logo img {
  width: 60%;
  filter: brightness(0) invert(1);
}

/* Empresa page */
.empresa-about .empresa-text {
  color: #3f3e3e;
  font-size: 16px;
  line-height: 1.7;
}

.empresa-highlight-title {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 16px;
  margin-bottom: 6px;
}

.empresa-box .empresa-text {
  color: #3f3e3e;
}

.empresa-selo {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 18px;
}

.empresa-selo-text {
  flex: 1 1 0;
  display: block;
  align-self: center;
  color: #6f8f2d;
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
}

.empresa-selo-img {
  max-width: 190px;
}

.empresa-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: #3f3e3e;
}

.empresa-values span {
  position: relative;
  padding-left: 12px;
}

.empresa-values span::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #999;
}

.empresa-box {
  padding-top: 6px;
}

.empresa-icons-title {
  color: #333;
  letter-spacing: 0.2px;
}

.empresa-icons-strip {
  background: #f2f2f2;
}

.empresa-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}

.empresa-icon-card img {
  max-width: 92px;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.empresa-icon-card:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.empresa-btn {
    border-radius: 0;
    padding: 8px 18px;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #3f3e3e;
    border-color: #3f3e3e;
    font-weight: 700;
}

.empresa-btn:hover {
  color: #fff;
  background: #666;
  border-color: #666;
}

/* Contato */
.contact-section {
  background: #fdfdfd;
}

.contact-form .form-label {
  color: #4a4a4a;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.contact-form .form-control {
  border: 1px solid #9498a5;
  border-radius: 2px;
  padding: 10px 12px;
  font-size: 14px;
  color: #333;
  box-shadow: none;
}

.contact-form .form-control:focus {
  border-color: #4f5766;
  box-shadow: 0 0 0 2px rgba(79, 87, 102, 0.15);
}

.contact-form textarea.form-control {
  min-height: 134px;
  resize: vertical;
}

.contact-scale .scale-label {
  font-size: 13px;
  color: #3f3e3e;
  font-weight: 700;
}

.contact-scale .form-check-label {
  font-size: 13px;
  color: #3f3e3e;
  font-weight: 700;
}

.contact-scale .form-check-input {
  margin-top: 0;
  width: 16px;
  height: 16px;
}

.contact-alert {
  border-radius: 2px;
  padding: 10px 12px;
  font-size: 14px;
}

.contact-form .form-control.is-invalid,
.contact-form .form-control.is-invalid:focus {
  border-color: #c0392b;
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.12);
}

.contact-form .invalid-feedback {
  display: block;
  color: #c0392b;
  font-weight: 700;
  font-size: 12px;
  margin-top: 4px;
}

.featured-carousel {
  margin: 0 -10px;
}

.produtos-listagem .col-6.col-sm-4.col-lg-3.col-xl-2 {
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 10px;
}

.produtos-listagem .produto-list-card {
  border: 1px solid #e0e0e0;
  padding: 12px;
  background: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  text-align: center;
  cursor: pointer;
}

.produtos-listagem .produto-list-card a {
  text-decoration: none;
  color: inherit;
}

.produtos-listagem .produto-list-card:hover {
  border-color: #bfbfbf;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.produtos-listagem .produto-img img {
  max-height: 120px;
  object-fit: contain;
}

.produtos-listagem .produto-detalhe {
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

.produtos-listagem .produto-codigo {
  font-size: 12px;
  color: #777;
  margin-bottom: 6px;
}

.produtos-listagem .produto-titulo {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.1px;
}

.produtos-listagem .produto-qty {
  max-width: 80px;
  padding: 6px 10px;
  font-size: 13px;
  text-align: center !important;
}

.produtos-listagem .produto-qty::placeholder {
  text-align: center;
}

.produtos-listagem .btn-add,
.produtos-listagem .btn-update,
.produtos-listagem .btn-update-pendent {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  min-width: 120px;
}

.produtos-listagem .btn-update {
  background: #054d8b;
  color: #ffffff;
  border: 1px solid #054d8b;
}

.produtos-listagem .btn-update-pendent {
  background: #478ecb;
  color: #ffffff;
  border: 1px solid #478ecb;
}

.produtos-listagem .btn-update-pendent:hover,
.produtos-listagem .btn-update:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}


.produtos-header .produtos-hero {
  background: #3e3e3e;
  color: #fff;
  padding: 18px 16px;
}

.produtos-header .produtos-hero-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.produtos-header .produtos-hero-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #f1f1f1;
}

.produtos-filtros .produtos-busca {
  border: 1px solid #c1c1c1;
}

.produtos-filtros .produtos-busca-btn {
  background: #3e3e3e;
  color: #fff;
  width: 44px;
}

.produtos-filtros .produtos-busca-input {
  border: none;
  border-radius: 0;
  box-shadow: none;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.produtos-filtros .produtos-busca-input:focus {
  outline: none;
  box-shadow: none;
}

.produtos-filtros .produtos-local {
  background: #f5f5f5;
  border: 1px solid #c1c1c1;
  border-radius: 0;
  color: #333;
  padding: 10px 14px;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.produtos-filtros .produtos-local-icone {
  background: #3e3e3e;
  color: #fff;
  width: 36px;
  height: 36px;
  font-size: 14px;
}

.produtos-filtros .produtos-local:hover {
  background: #ededed;
}

.product-card-wrapper {
  outline: none;
  position: relative;
  margin-bottom: 50px;
}

.product-card {
  border: 1px solid #e0e0e0;
  padding: 20px 15px;
  transition: all 0.3s ease;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Center Card Highlight */
.product-card.center-card {
  border-color: var(--primary) !important;
  box-shadow: 0 5px 15px rgba(198, 40, 40, 0.2) !important;
}

.product-img-box {
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product-code {
  font-size: 11px;
  color: #999;
}

.product-category {
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.product-desc {
  font-size: 11px;
  line-height: 1.4;
  height: 46px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webpack-box-orient: vertical;
}

.product-hover-overlay {
  position: absolute;
  bottom: -40px;
  left: -1px;
  right: -1px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.product-card-wrapper:hover .product-hover-overlay {
  opacity: 1;
  visibility: visible;
}

.product-hover-overlay .btn-danger {
  background-color: var(--primary);
  border-color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-hover-overlay .btn-danger:hover {
  background-color: #a52020;
}

/* Container do paginador */
.products-pagination {
  display: flex;
  justify-content: center;
  margin: 25px 0 40px;
}

/* Caixa do paginator */
.products-pagination .pagination {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

/* Link padrão */
.products-pagination .page-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #3f3e3e;
  border-color: #e1e1e1;
  padding: 0.45rem 0.9rem;
  background-color: #ffffff;
}

/* Hover */
.products-pagination .page-link:hover {
  color: #d62327;
  /* vermelho do logo */
  background-color: #f5f5f5;
  border-color: #dcdcdc;
}

/* Item ativo (página atual) – segue o estilo do botão "ADICIONAR" */
.products-pagination .page-item.active .page-link {
  color: #fff;
  background-color: #343842;
  /* mesmo tom escuro dos botões */
  border-color: #343842;
}

/* Desabilitado (<<, >> quando não pode clicar) */
.products-pagination .page-item.disabled .page-link {
  color: #b5b5b5;
  background-color: #fafafa;
  border-color: #e6e6e6;
}

/* Tira o “salto” azulado padrão do Bootstrap no foco */
.products-pagination .page-link:focus {
  box-shadow: none;
  outline: none;
}

/* Slick Carousel Dots Customization */
.slick-dots {
  bottom: -45px;
}

.slick-dots li button:before {
  font-size: 10px;
  color: #ccc;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  color: #999;
  opacity: 1;
}

.slick-dots li button:hover:before {
  color: #666;
}

/* Responsive */
@media (max-width: 991.98px) {
  .featured-carousel {
    margin: 0;
  }

  .product-card-wrapper {
    padding-left: 5px !important;
    padding-right: 5px !important;
    margin-bottom: 60px;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .featured-carousel {
    margin: 0;
  }

  .product-card-wrapper {
    padding-left: 5px !important;
    padding-right: 5px !important;
    margin-bottom: 60px;
  }
}

/* Clientes Section */
.clientes-section {
  background-color: #4a4a4a;
}

.cliente-logo-box {
  background-color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: transform 0.2s ease;
}

.cliente-logo-box:hover {
  transform: scale(1.05);
}

.cliente-logo-box img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* Produtos - categorias */
.produtos-categorias-section {
  background: #fff;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.produto-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.produto-card img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.produto-title {
  position: relative;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.4px;
  color: #4a4a4a;
  padding: 12px 8px 14px;
  background: #fff;
}

.produto-card:hover .produto-title {
  color: var(--primary);
}

.catalogo-card {
  grid-column: span 2;
}

.footer-locations {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.location-badge img {
  width: 120px;
  height: auto;
  display: block;
}

.location-info {
  flex: 1;
  color: #333;
}

.location-line {
  font-size: 14px;
  color: #333;
}

.location-detail {
  color: #3f3e3e;
  font-size: 13px;
}

.footer-actions .newsletter-btn {
  background-color: #fdfdfd;
  border: 1px solid #b3b3b3;
  border-radius: 2px;
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 13px;
  color: #3f3e3e;
  text-transform: uppercase;
  position: relative;
  padding-left: 50px;
}

.newsletter-icon {
  position: absolute;
  left: 0;
  top: 0;
  padding: 11px;
  background-color: #3f3e3e;
}

.newsletter-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: invert(100%);
}

.footer-email {
  color: var(--primary);
  font-size: var(--font-size-md);
  font-weight: 700;
}

.footer-email img {
  margin-right: 8px;
  vertical-align: middle;
}

.footer-email:hover {
  color: #a52020;
}

.footer-nav {
  column-gap: 8px;
  row-gap: 6px;
}

.footer-nav li {
  position: relative;
  padding-left: 12px;
  margin-left: 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.footer-nav li:first-child {
  padding-left: 0;
  margin-left: 0;
}

.footer-nav li::before {
  content: "|";
  position: absolute;
  left: -4px;
  color: #b3b3b3;
}

.footer-nav li:first-child::before {
  content: "";
}

.footer-nav a {
  color: #444;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-logo img {
  width: 160px;
  height: auto;
}

.footer-bottom {
  background-color: #424242;
}

.footer-bottom .container {
  color: #fff;
}


/* Product Details Styles */
.product-info h1 {
  font-size: 24px;
}

.product-info .btn.qty-btn {
  padding: 0 7px !important;
  height: 20px;
  line-height: normal;
  background: #cccc;
  color: #000;
  border-color: #999;
}

.product-info .produto-detalhe-codigo {
  color: var(--text-dark);
}

.product-info .qty-input {
  width: 50px;
  border-color: #999;
}

.product-info .btn-whatsapp .box-angulo {
  background: #cccc;
  width: fit-content;
  display: inline-block;
  color: var(--text-dark);
  font-size: var(--font-size-sm);
  font-weight: bold;
  white-space: nowrap;
  /* transforma o retângulo inclinando as laterais */
  transform: skew(-14deg);
  padding: 6px 10px;
  margin-left: -5px;
}

/* corrige o texto para não ficar torto */
.product-info .btn-whatsapp .box-angulo * {
  transform: skew(14deg);
}

.product-info .btn-whatsapp img {
  width: 48px;
  height: 48px;
}

.product-info .btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #999;
  padding: 4px 10px 4px 0;
  color: #3f3e3e;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  height: 41px;
  min-width: 140px;
}

.product-info .btn-add-cart:hover {
  background: #c62828;
  border-color: #c62828;
  color: #fff;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.product-info .btn-add-cart .icon-container {
  width: 41px;
  height: 41px;
  background-color: #c62828;
  color: #fff;
}

.product-info .btn-add-cart .icon-container img {
  width: 41px;
  height: 41px;
}

.produto-detalhe-categoria {
  text-transform: uppercase;
  color: var(--primary);
}

.produto-detalhe-categoria-caminho {
  font-size: .80em;
  color: #c62828;
}

.produto-detalhe-email {
  color: var(--primary);
}

.produto-detalhe-email i {
  color: var(--text-gray);
  margin-right: 8px;
}

.produto-detalhe-actions .action-btn {
  width: 50px;
  height: 50px;
}

.catalogo-card {
  grid-column: span 2;
}

/* Product Modal Styles */
.produto-modal .btn.qty-btn {
  padding: 0 7px !important;
  height: 20px;
  line-height: normal;
  background: #cccc;
  color: #000;
  border-color: #999;
}

.produto-modal .produto-modal-codigo {
  color: var(--text-dark);
}

.produto-modal .qty-input {
  width: 50px;
  border-color: #999;
}

.produto-modal .btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #999;
  padding: 4px 10px 4px 0;
  color: #3f3e3e;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  height: 41px;
  min-width: 140px;
}

.produto-modal .btn-add-cart:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.produto-modal .btn-add-cart .icon-container {
  width: 41px;
  height: 41px;
  background-color: var(--primary);
  color: #fff;
}

.produto-modal-categoria {
  text-transform: uppercase;
  color: var(--primary);
}

.produto-modal-email {
  color: var(--primary);
}

.produto-modal-email i {
  color: var(--text-gray);
  margin-right: 8px;
}

.produto-modal-actions .action-btn {
  width: 50px;
  height: 50px;
}

.catalogo-card {
  grid-column: span 2;
}

/* Footer */
.site-footer {
  background-color: #e6e6e6;
  color: #333;
  font-size: var(--font-size-sm);
}

.footer-locations {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.location-item {
  display: flex;
  gap: 12px;
  align-items: center; /* Alterado de flex-start para center */
}

.location-badge img {
  width: 120px;
  height: auto;
  display: block;
}

.location-info {
  flex: 1;
  color: #333;
}

.location-line {
  font-size: 14px;
  color: #333;
}

.location-detail {
  color: #3f3e3e;
  font-size: 13px;
}

.footer-actions .newsletter-btn {
  background-color: #fdfdfd;
  border: 1px solid #b3b3b3;
  border-radius: 2px;
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 13px;
  color: #3f3e3e;
  text-transform: uppercase;
  position: relative;
  padding-left: 50px;
}

.newsletter-icon {
  position: absolute;
  left: 0;
  top: 0;
  padding: 11px;
  background-color: #3f3e3e;
}

.newsletter-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: invert(100%);
}

.footer-email {
  color: var(--primary);
  font-size: var(--font-size-md);
  font-weight: 700;
}

.footer-email img {
  margin-right: 8px;
  vertical-align: middle;
}

.footer-email:hover {
  color: #a52020;
}

.footer-nav {
  column-gap: 8px;
  row-gap: 6px;
}

.footer-nav li {
  position: relative;
  padding-left: 12px;
  margin-left: 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.footer-nav li:first-child {
  padding-left: 0;
  margin-left: 0;
}

.footer-nav li::before {
  content: "|";
  position: absolute;
  left: -4px;
  color: #b3b3b3;
}

.footer-nav li:first-child::before {
  content: "";
}

.footer-nav a {
  color: #444;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-logo img {
  width: 160px;
  height: auto;
}

.footer-bottom {
  background-color: #424242;
}

.footer-bottom .container {
  color: #fff;
}

/* Footer */
.site-footer {
  background-color: #e6e6e6;
  color: #333;
  font-size: var(--font-size-sm);
}

.footer-locations {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.location-badge img {
  width: 120px;
  height: auto;
  display: block;
}

.location-info {
  flex: 1;
  color: #333;
}

.location-line {
  font-size: 14px;
  color: #333;
}

.location-detail {
  color: #3f3e3e;
  font-size: 13px;
}

.footer-actions .newsletter-btn {
  background-color: #fdfdfd;
  border: 1px solid #3f3e3e;
  border-radius: 2px;
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 13px;
  color: #3f3e3e;
  text-transform: uppercase;
  position: relative;
  padding-left: 50px;
}

.newsletter-icon {
  position: absolute;
  left: 0;
  top: 0;
  padding: 11px;
  background-color: #3f3e3e;
}

.newsletter-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: invert(100%);
}

.footer-email {
  color: var(--primary);
  font-size: var(--font-size-md);
  font-weight: 700;
}

.footer-email img {
  margin-right: 8px;
  vertical-align: middle;
}

.footer-email:hover {
  color: #a52020;
}

.footer-nav {
  column-gap: 8px;
  row-gap: 6px;
}

.footer-nav li {
  position: relative;
  padding-left: 12px;
  margin-left: 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.footer-nav li:first-child {
  padding-left: 0;
  margin-left: 0;
}

.footer-nav li::before {
  content: "|";
  position: absolute;
  left: -4px;
  color: #b3b3b3;
}

.footer-nav li:first-child::before {
  content: "";
}

.footer-nav a {
  color: #444;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-logo img {
  width: 160px;
  height: auto;
}

.footer-bottom {
  background-color: #424242;
}

.footer-bottom .container {
  color: #fff;
}

@media (max-width: 991.98px) {
  .cliente-logo-box {
    min-height: 90px;
    padding: 15px;
  }
}

@media (max-width: 991.98px) {
  .empresa-box {
    margin-left: 0 !important;
  }

  .empresa-selo {
    flex-direction: column;
  }

  .empresa-selo-img {
    max-width: 200px;
  }
}

@media (max-width: 991.98px) {
  .category-menu {
    width: 100%;
  }

  .category-dropdown {
    position: static;
    margin-top: 10px;
    box-shadow: none;
    width: 100%;
  }

  .category-dropdown .submenu {
    position: static;
    box-shadow: none;
    border-left: none;
  }
}

@media (max-width: 991.98px) {
  .location-badge img {
    width: 110px;
  }

  .footer-actions {
    align-items: flex-start !important;
  }
}

@media (max-width: 1199.98px) {
  .produtos-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .produtos-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .produtos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalogo-card {
    grid-column: span 2;
  }
}

@media (max-width: 575.98px) {
  produtos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalogo-card {
    grid-column: span 1;
  }
}

@media (max-width: 991.98px) {
  .location-badge img {
    width: 110px;
  }

  .footer-actions {
    align-items: flex-start !important;
  }

  .footer-nav {
    width: 90%;
    justify-content: center !important;
  }

  .footer-actions {
    align-items: center !important;
  }

  .footer-top .col-lg-5 {
    text-align: center !important;
  }
}

@media (max-width: 575px) {

  .catalogo-card {
    grid-column: span 2;
  }

  @media (max-width: 1199.98px) {
    .produtos-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }

  @media (max-width: 991.98px) {
    .produtos-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }

  @media (max-width: 767.98px) {
    .produtos-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalogo-card {
      grid-column: span 2;
    }
  }

  @media (max-width: 575.98px) {
    produtos-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalogo-card {
      grid-column: span 1;
    }
  }

  @media (max-width: 991.98px) {
    .location-badge img {
      width: 110px;
    }

    .footer-actions {
      align-items: flex-start !important;
    }

    .footer-nav {
      width: 90%;
      justify-content: center !important;
    }

    .footer-actions {
      align-items: center !important;
    }

    .footer-top .col-lg-5 {
      text-align: center !important;
    }
  }

  @media (max-width: 575px) {
    .footer-top .col-lg-5 {
      padding-top: 20px;
      background-color: white !important;
    }

    .social-icons {
      display: none !important;
    }
  }
}


/* Catalog Form Styles */
.catalog-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin-top: 20px;
}

.catalog-input-row {
  display: flex;
  align-items: stretch;
}

.catalog-icon-box {
  background-color: #333;
  color: #fff;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.catalog-input {
  flex: 1;
  height: 45px;
  border: 1px solid #999;
  border-left: none;
  padding: 0 15px;
  font-size: 13px;
  text-transform: uppercase;
  color: #3f3e3e;
  outline: none;
}

.catalog-input::placeholder {
  color: #3f3e3e;
}

.catalog-input.full-border {
  border-left: 1px solid #999;
}

.offset-row {
  padding-left: 45px;
  /* Width of the icon box */
}

.catalog-action-row {
  display: flex;
  justify-content: flex-end;
  /* Align to right as per typical form layouts, or center? Image shows it aligned with inputs right edge potentially */
  /* Actually, looking at the image, the button is on the right side of the form area. */
  margin-top: 10px;
}

.catalog-submit-btn {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s;
}

.catalog-submit-btn:hover {
  opacity: 0.9;
}

.btn-icon-box {
  background-color: #a52020;
  /* Darker red */
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;

  @media (max-width: 767.98px) {
    .produtos-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalogo-card {
      grid-column: span 2;
    }
  }

  @media (max-width: 575.98px) {
    produtos-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalogo-card {
      grid-column: span 1;
    }
  }

  @media (max-width: 991.98px) {
    .location-badge img {
      width: 110px;
    }

    .footer-actions {
      align-items: flex-start !important;
    }

    .footer-nav {
      width: 90%;
      justify-content: center !important;
    }

    .footer-actions {
      align-items: center !important;
    }

    .footer-top .col-lg-5 {
      text-align: center !important;
    }
  }

  @media (max-width: 575px) {

    .catalogo-card {
      grid-column: span 2;
    }

    @media (max-width: 1199.98px) {
      .produtos-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    @media (max-width: 991.98px) {
      .produtos-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    @media (max-width: 767.98px) {
      .produtos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .catalogo-card {
        grid-column: span 2;
      }
    }

    @media (max-width: 575.98px) {
      produtos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .catalogo-card {
        grid-column: span 1;
      }
    }

    @media (max-width: 991.98px) {
      .location-badge img {
        width: 110px;
      }

      .footer-actions {
        align-items: flex-start !important;
      }

      .footer-nav {
        width: 90%;
        justify-content: center !important;
      }

      .footer-actions {
        align-items: center !important;
      }

      .footer-top .col-lg-5 {
        text-align: center !important;
      }
    }

    @media (max-width: 575px) {
      .footer-top .col-lg-5 {
        padding-top: 20px;
        background-color: white !important;
      }

      .social-icons {
        display: none !important;
      }
    }
  }


}

/* Catalog Form Styles */
.catalog-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin-top: 20px;
}

.catalog-input-row {
  display: flex;
  align-items: stretch;
}

.catalog-icon-box {
  background-color: #333;
  color: #fff;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.catalog-input {
  flex: 1;
  height: 45px;
  border: 1px solid #999;
  border-left: none;
  padding: 0 15px;
  font-size: 13px;
  text-transform: uppercase;
  color: #3f3e3e;
  outline: none;
}

.catalog-input::placeholder {
  color: #3f3e3e;
}

.catalog-input.full-border {
  border-left: 1px solid #999;
}

.offset-row {
  padding-left: 45px;
  /* Width of the icon box */
}

.catalog-action-row {
  display: flex;
  justify-content: flex-end;
  /* Align to right as per typical form layouts, or center? Image shows it aligned with inputs right edge potentially */
  /* Actually, looking at the image, the button is on the right side of the form area. */
  margin-top: 10px;
}

.catalog-submit-btn {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s;
}

.catalog-submit-btn:hover {
  opacity: 0.9;
}

.btn-icon-box {
  background-color: #a52020;
  /* Darker red */
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.btn-text {
  background-color: var(--primary);
  /* #c62828 */
  color: #fff;
  height: 45px;
  display: flex;
  align-items: center;
  padding: 0 30px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Seja Cliente Visuals */
.seja-cliente-visuals {
  height: 100%;
  min-height: 600px;
  /* Ensure enough height for the absolute positioning */
}

.visual-badge {
  width: 250px;
  z-index: 2;
}

.visual-text {
  width: 200px;
  z-index: 2;
}

.visual-map {
  width: 400px;
  z-index: 1;
}

.visual-units {
  width: 300px;
  z-index: 2;
}

/* Sidebar Cart */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 1060;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-sidebar-header {
  background: #f8f9fa;
  color: #333;
}

.cart-sidebar-body {
  flex: 1;
  overflow-y: auto;
}

.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-backdrop.show {
  display: block;
  opacity: 1;
}

@media (max-width: 575.98px) {
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
}

.cart-icon-btn {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  flex: 0 0 32px !important;
  padding: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s;
}

.cart-icon-btn:hover {
  background-color: #f8f9fa;
  border-color: #ccc;
}

.cart-icon-btn.pending {
  background-color: #478ecb;
  border-color: #478ecb;
  color: #ffffff !important;
}

.cart-icon-btn.pending:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
}

.uf_selecionada{
	background-color: #c4252b;
    color: white;
}

.padding_logotipo{
	padding-top:13px !important;
	padding-bottom:13px !important;
}


/* --- AJUSTE DEFINITIVO: CATÁLOGO EM 2 COLUNAS COM ALINHAMENTO --- */

/* 1. Configura o Grid de 5 colunas */
.produtos-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 30px 20px !important;
    align-items: stretch !important; /* Mantém todos com a mesma altura na linha */
}

/* 2. Padroniza a altura vertical de TODOS os cards (inclusive o catálogo) */
.produto-card img {
    width: 100% !important;
    aspect-ratio: 4 / 5 !important; /* Proporção vertical para todos serem iguais */
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    background-color: #f5f5f5;
}

/* 3. O PULO DO GATO: Faz o Catálogo ocupar 2 colunas de largura */
.catalogo-card {
    grid-column: span 2 !important; /* Estica para ocupar 2 espaços do grid */
    display: flex !important;
    flex-direction: column !important;
}

/* Garante que a imagem do catálogo preencha o novo espaço largo sem mudar de altura */
.catalogo-card img {
    width: 100% !important;
    aspect-ratio: auto !important; /* Permite que ele se ajuste à largura dupla */
    height: 100% !important;      /* Mas obriga a manter a altura dos vizinhos */
    object-fit: cover !important;
}

/* 4. Padroniza os títulos para manter a simetria */
.produto-title {
    margin-top: 15px !important;
    text-align: center !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    min-height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* --- AJUSTE DE PRECISÃO: ALINHAMENTO PIXEL PERFEITO --- */

/* 1. Força o card a ocupar toda a altura da linha do grid */
.catalogo-card {
    grid-column: span 2 !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important; /* Isso obriga o card a esticar até a base da linha */
    margin: 0 !important;
}

/* 2. Faz a imagem preencher o espaço vertical que sobra no card */
.catalogo-card img {
    flex: 1 !important;        /* O segredo: a imagem cresce para preencher o card */
    width: 100% !important;
    height: 100% !important;   /* Força a altura total */
    object-fit: cover !important; /* Mantém a proporção sem distorcer */
    object-position: center !important;
    display: block !important;
    aspect-ratio: auto !important; /* Remove proporções fixas para o catálogo */
}

/* 3. Ajuste do título para não empurrar a base */
.catalogo-card .produto-title {
    margin-top: 15px !important;
    margin-bottom: 0 !important;
    text-align: center !important;
}




@media screen and (min-width: 1201px) {
	.product-info-altura{
		position: relative !important;
		top: 70px !important;
	}
}

 /* O container pai (div) precisa centralizar o que estiver dentro */
    .search-parent-container {
        text-align: center; 
        width: 100%;
    }

    .fortpel-search-container {
        display: inline-block;
        position: relative;
        width: 100%;
        max-width: 1024px; /* Controle aqui a largura final */
        vertical-align: middle;
    }

    .fortpel-input {
        /* Bordas menos arredondadas, conforme a foto */
        border-radius: 10px !important; 
        height: 42px;
        padding-left: 15px;
        padding-right: 45px;
        border: 1px solid #d1d1d1 !important;
        font-size: 14px;
        box-shadow: none !important;
    }

    .fortpel-search-btn {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #d11e25; /* Vermelho Fortpel */
        cursor: pointer;
        display: flex;
        align-items: center;
        z-index: 10;
    }

    .fortpel-input:focus {
        border-color: #d11e25 !important;
    }
	
	.report-item{
      font-style: italic !important;
      color: #888888 !important;
    }

    .report-item > a{
      font-size: 19px;
      color: #888888 !important;
    }

    .transparency-text{
      color: #3f3e3e;
      font-weight: 600;
    }

	.imagem-responsiva-banner{
		display:none !important;
	}
	
	.imagem-responsiva-banner-desktop{
		display:block !important;
	}

    @media screen and (max-width: 600px) {
		.transparency-text{
			padding-left: 10px !important;
			padding-right: 10px !important;
		}
		.reports-section{
			padding-left: 10px !important;
			padding-right: 10px !important;
		}

		.produtos-grid {
			display: grid !important;
			grid-template-columns: repeat(3, 1fr) !important;
			gap: 30px 20px !important;
			align-items: stretch !important; /* Mantém todos com a mesma altura na linha */
		}
		.imagem-responsiva-banner{
			display:block !important;
			
		}
		
		.imagem-responsiva-banner-desktop{
			display:none !important;
		}
      
    }

    .btn-download:hover{

      color: #455870 !important;

    }