body {
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
  font-weight: 600;
}

.menu a {
  font-weight: 500;
}

.card h4 {
  font-weight: 600;
}

.card p {
  font-weight: 400;
}

.carrinho_card{
  width: 50px;
  border-radius: 100px;
}

/* ==========================================================================
   ESTILOS GLOBAIS E RESET
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Garante que preenchimento não afete a largura total */
}

body {
  background-color: whitesmoke;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* Evita rolagem horizontal indesejada */
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.cart-icon {
  justify-self: end;
  position: relative;
  font-size: 22px;
  color: white;
  cursor: pointer;
  background-color: #2E8BC6;
  border-radius: 100px;
  height: 50px;
  width: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon i {
  font-size: 24px;
}

.header-user-auth {
  position: relative;
  display: flex;
  align-items: center;
  justify-self: end;
}

.header-user-button {
  border: 1px solid transparent;
  background: transparent;
  color: #2E8BC6;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 14px;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.header-user-button:hover {
  background: rgba(46, 139, 198, 0.1);
}

.header-user-label {
  white-space: nowrap;
}

.header-user-auth.auth-on-dark .header-user-button {
  color: #ffffff;
  border-color: #ffffff;
}

.header-user-auth.auth-on-dark .header-user-button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.header-user-auth.auth-on-light .header-user-button {
  color: #2E8BC6;
  border-color: #2E8BC6;
}

.header-user-auth.auth-on-light .header-user-button:hover {
  background: rgba(46, 139, 198, 0.08);
}

.header-user-dropdown {
  list-style: none;
  margin: 10px 0 0;
  padding: 8px 0;
  min-width: 235px;
  position: absolute;
  right: 0;
  top: calc(100% + 2px);
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e7edf4;
  box-shadow: 0 12px 28px rgba(31, 42, 56, 0.16);
  z-index: 1400;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.header-user-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-user-dropdown a,
.header-user-dropdown button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: #243042;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

.header-user-dropdown a:hover,
.header-user-dropdown button:hover {
  background: #f2f7fc;
}

.header-user-dropdown-greeting {
  color: #5d6b7d;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  cursor: default;
}

.header-user-dropdown-divider {
  border-top: 1px solid #edf2f8;
  margin: 6px 0;
}

@media (max-width: 768px) {
  .header-user-button {
    padding: 8px 10px;
    gap: 0;
    min-width: 44px;
    justify-content: center;
  }

  .header-user-button .header-user-label,
  .header-user-button .fa-chevron-down {
    display: none;
  }

  .header-user-dropdown {
    right: -8px;
    min-width: 210px;
  }
}

#cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #F7941D;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 50%;
}

.header {
  width: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Faixa superior azul com contatos e links rápidos */
.header-top {
  background-color: #2E8BC6;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-top-left,
.header-top-right {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.header-top-left img,
.header-top-right img {
  width: 16px;
}

.header-top-right a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Área principal do cabeçalho: Logo, Busca e Carrinho */
.header-main {
  background-color: #2E8BC6;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 15px 20px;
  gap: 20px;
}

.header-logo {
  justify-self: start;
}

.header-logo img {
  width: 160px;
  height: auto;
  object-fit: contain;
  background-color: #ffffff;
  padding: 0;
  border-radius: 12px;
  display: block;

}

.header-search {
  width: 100%;
  max-width: 620px;
  display: flex;
  background: #ffffff;
  border-radius: 8px;
  height: 42px;
  align-items: center;
  overflow: hidden;
  justify-self: stretch;
}

.header-search select {
  border: none;
  background: transparent;
  padding: 0 15px;
  font-size: 14px;
  color: #555;
  outline: none;
  cursor: pointer;
  border-right: 1px solid #eee;
  height: 100%;
}

.header-search input {
  flex: 1;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  outline: none;
  height: 100%;
}

.header-search button {
  background: transparent;
  border: none;
  padding: 0 15px;
  cursor: pointer;
  font-size: 16px;
  color: #666;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Ícone do Carrinho e texto de valor */
.header-cart {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  white-space: nowrap;
}

.header-cart a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.header-cart img {
  width: 40px;
}
/* ==========================================================================
   SUGESTÕES DE BUSCA (AUTOCOMPLETE)
   ========================================================================== */

/* IMPORTANTE: Altera o overflow para que as sugestões apareçam */
.header-search {
  overflow: visible !important;
  position: relative;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  z-index: 2500; /* Acima do drawer do carrinho */
  max-height: 350px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.suggestion-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  border-bottom: 1px solid #f5f5f5;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background: #f0f9ff;
}

.suggestion-item img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin-right: 15px;
  background: #f9f9f9;
  border-radius: 4px;
}

.suggestion-item span {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.product-card-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}
/* ==========================================================================
   NAVEGAÇÃO (MENU PRINCIPAL)
   ========================================================================== */
.header-nav {
  background-color: var(--brand-blue-900);
  width: 100%;
  border-bottom: none;
}

.header-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  max-width: 1320px;
  padding: 15px 20px;
  margin: 0 auto;
  gap: 36px;
  box-shadow: none;
  background: transparent;
}

.header-nav li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  transition: color 0.2s, text-decoration-color 0.2s;
}


.header-nav li a:hover {
  color: #d7ebff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-nav a.active {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Notificação Toast Delicada */
.toast-notificacao {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: min(90vw, 720px);
    background-color: #2E8BC6; /* Azul do seu tema */
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    animation: slideInTop 0.4s ease, fadeOut 0.4s ease 2.5s forwards;
}

@keyframes slideInTop {
    from { transform: translate(-50%, -24px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; pointer-events: none; }
}

@media (max-width: 768px) {
  .toast-notificacao {
    top: 16px;
    width: calc(100vw - 32px);
    padding: 12px 16px;
  }
}


/* ==========================================================================
   LÓGICA DO MENU DROPDOWN
   ========================================================================== */

/* Garante que o item pai seja a referência para o posicionamento */
.header-nav ul li {
  position: relative;
}

.dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
  z-index: 1000;
  list-style: none;
  padding: 10px 0;
  border-bottom: 3px solid #2E8BC6; /* Detalhe azul na base */
}

/* Evita que estilos do <ul> principal sobrescrevam o fundo do dropdown */
.header-nav ul.dropdown-menu {
  background-color: #ffffff;
  padding: 10px 0;
  margin: 0;
  max-width: none;
}

/* Estilo dos itens dentro do dropdown */
.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  padding: 10px 20px;
  display: block;
  font-size: 13px;
  color: #444;
  text-transform: none;
  font-weight: 500;
}

/* Efeito de hover nos itens do dropdown */
.dropdown-menu li a:hover {
  background-color: #f5f5f5;
  color: #2E8BC6;
}

/* MOSTRAR O MENU AO PASSAR O MOUSE */
.has-dropdown:hover .dropdown-menu {
  display: block!important;
  animation: fadeIn 0.2s ease-in;
}


/* ==========================================================================
   BREADCRUMB (Navegação estrutural)
   ========================================================================== */
.breadcrumb {
  background-color: transparent;
  padding: 20px 0;
  width: 100%;
}

.breadcrumb-content {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 15px 25px;
  border: 1px solid #e5e5e5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.breadcrumb-link {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-icon {
  width: 18px;
  height: auto;
}

.breadcrumb-separator {
  margin: 0 10px;
  color: #999;
  font-size: 11px;
}

.breadcrumb-current {
  color: #3e4a61;
  font-weight: 700;
  font-size: 14px;
}

/* ==========================================================================
   CARROSSEL CENTRALIZADO E ESTÁVEL
   ========================================================================== */
.carousel-section {
    padding: 30px 0;
    background-color: #f2f2f2;
    display: flex;
    flex-direction: column; /* Alinha o título e o carrossel um abaixo do outro */
    align-items: center;    /* Centraliza tudo horizontalmente */
    width: 100%;
}

/* O texto "Alguns dos nossos produtos" agora também fica no centro */
.carousel-section > p,
.carousel-section > div:first-child {
    margin-bottom: 20px;
    font-weight: 600;
    color: #444;
    text-align: center;
}

.carousel-container {
    position: relative;
    max-width: 800px;  /* Tamanho que você aprovou */
    width: 95%;
    height: 200px;     /* Altura travada para não ficar gigante */
    margin: 0 auto;    /* Centralização mestre do container */
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-item.active {
    display: flex;           /* Flexbox para centralizar a imagem internamente */
    justify-content: center;
    align-items: center;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Setas de navegação aumentadas */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.7); /* Um pouco mais opaco para destacar */
    border: none;
    border-radius: 50%;
    color: #F7941D;
    font-size: 32px;       /* Tamanho do ícone aumentado */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-prev:hover, .carousel-next:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1); /* Efeito de zoom ao passar o mouse */
    color: #F7941D;
}

.carousel-prev:hover, .carousel-next:hover {

    transform: translateY(-50%) scale(1.1); /* Efeito de zoom ao passar o mouse */
    color: #F7941D;
}

/* Mantendo o distanciamento das bordas */
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }
/* ==========================================================================
   GRADE DE CATEGORIAS (Cards Coloridos)
   ========================================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

/* Procure a classe .category-card no seu CSS e adicione a propriedade cursor */
.category-card {
  padding: 26px 25px;
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
  cursor: pointer; /* NOVA LINHA: Transforma o mouse em uma "mãozinha" no card todo */
}

.category-card h3 {
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.category-card a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-blue { background-color: #2E8BC6; }
.card-orange { background-color: #F7941D; }
.card-red { background-color: #F7941D; }
.card-light-blue { background-color: #1F6FA8; }


/* ==========================================================================
   ESTRUTURA DA PÁGINA DE PRODUTOS
   ========================================================================== */
.product-page {
  background-color: #f2f2f2;
  padding: 40px 0;
  min-height: 800px;
}

.container-main {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  padding: 0 20px;
}

/* BARRA LATERAL DE FILTROS */

.filters-sidebar {
  width: 260px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.filter-group {
  border-bottom: 0;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.filter-list,
.price-inputs input,
.filter-dropdown,
.btn-clear,
.btn-filter {
  border: none;
  box-shadow: none;
}

/* Estilo para o Dropdown de Filtro */
.filter-dropdown {
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  color: #555;
  outline: none;
  cursor: pointer;
  background-color: #fff;
  transition: border-color 0.2s;
}

.filter-dropdown:hover, .filter-dropdown:focus {
  border-color: #2E8BC6; /* Azul padrão do tema ao passar o mouse ou focar */
}

.filter-group {
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: 0;
}

.filter-group h4 {
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: 'Segoe UI', sans-serif;
}

/* LISTA DE CATEGORIAS NOS FILTROS */
.filter-list {
  list-style: none;
  padding: 0;
}

.filter-item {
  padding: 8px 0;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: color 0.2s, padding-left 0.2s;
}

.filter-item:hover {
  color: #2E8BC6;
  padding-left: 5px;
}

/* INPUTS DE PREÇO E BOTÕES DE AÇÃO */
.price-inputs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-inputs input {
  padding: 8px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
}

.btn-filter {
  background-color: #2E8BC6;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
  transition: background 0.2s;
}

.btn-filter:hover {
  background-color: #2E8BC6;
}

.btn-clear {
  width: 100%;
  background: transparent;
  border: none;
  color: #F7941D;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  margin-top: 10px;
}

/* ==========================================================================
   GRADE DE PRODUTOS (EXIBIÇÃO DOS CARDS)
   ========================================================================== */
.products-content {
  flex: 1;
}

.products-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.products-header select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #555;
  outline: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

/* ==========================================================================
   ESTILO DO CARD DE PRODUTO
   ========================================================================== */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
  position: relative;
  min-height: 460px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Container que envolve a imagem do produto */
.product-image-container {
  width: 100%;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 280px;
  padding: 14px;
}

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

/* Oculta imagens que não tenham a classe correta dentro do card */
.product-card > img:not(.product-img) {
  display: none !important;
}

.product-card img.product-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Etiqueta de categoria azul sobre a imagem */
.category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #2E8BC6;
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 10;
}

/* Seção de textos e informações abaixo da imagem */
.product-info {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.product-card h3 {
  font-size: 1rem;
  color: #333;
  margin: 0 0 5px 0;
  font-weight: 700;
  text-transform: uppercase;
  min-height: 40px;
}

/* Rodapé do card contendo preço e botão de compra */
.product-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  margin-top: 10px;
}

.price-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.installment-preview {
  margin: 0;
  font-size: 0.8rem;
  color: #666;
  font-weight: 600;
}

.cash-price {
  margin: 0;
  font-size: 0.82rem;
  color: #0b7a35;
  font-weight: 700;
}

.price-label {
  font-size: 0.75rem;
  color: #999;
}

.price-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: #222;
}

/* Botão Laranja de adicionar ao carrinho */
.btn-add-cart {
  background: none;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.btn-add-cart:hover {
  background: #F7941D;
}

.btn-add-cart img {
  width: 35px;
}

/* Limpeza definitiva de elementos residuais */
.product-card > img:not(.product-img),
.product-card > br,
.product-card > span:not(.category-badge) {
  display: none !important;
}

/* Container principal da paginação */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  padding-bottom: 20px;
  font-family: 'Segoe UI', sans-serif;
}

/* Estilo para os números das páginas */
.page-numbers {
  display: flex;
  gap: 8px;
}

/* Botões base (Números e Anterior/Próximo) */
.page-btn, .page-num {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px; /* Mantém o arredondado da imagem */
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Estilo para os botões de texto (Anterior/Próximo) */
.page-btn {
  padding: 8px 20px;
}

/* Página Ativa (Laranja) */
.page-num.active {
  background-color: #F7941D; /* Laranja padrão do seu projeto */
  color: #ffffff;
  border-color: #F7941D;
}

/* Efeito de Hover */
.page-btn:hover, .page-num:hover:not(.active) {
  background-color: #f5f5f5;
  border-color: #ccc;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background-color: #2E8BC6; /* Azul padrão da identidade visual */
  color: #ffffff;
  padding: 40px 0 20px 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Linha divisória suave */
  padding-bottom: 30px;
}

/* Colunas do Rodapé */
.footer-column h3 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

/* Listas de Informação */
.footer-info {
  list-style: none;
  padding: 0;
}

.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-mini-icon {
  font-size: 16px;
  margin-top: 2px;
  min-width: 16px;
}

.footer-phone-list {
  align-items: center;
}

.footer-phone-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.footer-phone-link i {
  color: #25d366;
  font-size: 14px;
}

.footer-phone-link:hover {
  text-decoration: underline;
}

.footer-info a {
  color: #fff;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* Tabela de Horários */
.schedule-table {
  font-size: 14px;
  border-collapse: collapse;
}

.schedule-table td {
  padding: 3px 20px 3px 0;
}
.instagram-icon{
  display: inline;
}
.instagram-icon img{
  height: 20px;
  margin-left: 10px;
}

/* Créditos e CNPJ no Fundo */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.9;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.whatsapp-float:hover {
  background: #1ebe5d;
}

.copy {
  text-align: center;
  font-size: 13px;
  opacity: 0.9;
}

/* Overlay escuro */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1500;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100vh; /* ← ALTERAÇÃO IMPORTANTE */
  background: #fff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  z-index: 2000; /* ↑ sobe acima de tudo */
}

.cart-drawer.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

.cart-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid #eee;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}


/* Estilização do botão de remover */
.btn-remove-item {
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}


.btn-remove-item:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

.cart-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.btn-remove-item {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Responsividade para Celular */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-info li {
    justify-content: center;
  }

  .footer-phone-links {
    align-items: center;
  }

  .schedule-table {
    margin: 0 auto;
  }
}


/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
  .container-main {
    flex-direction: column;
  }

  .filters-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== AJUSTE MOBILE TESTE GPT ===== */
@media (max-width: 768px) {
  html, body {
    width: 100%;
    overflow-x: hidden;
  }

  .header-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 10px 15px;
  }

  .header-top-left,
  .header-top-right {
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 15px;
    gap: 12px;
  }

  .header-logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .header-logo img {
    width: 152px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .header-search {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 42px;
  }

  .header-search select {
    width: 42%;
    min-width: 110px;
    font-size: 13px;
    padding: 0 10px;
  }

  .header-search input {
    width: 58%;
    min-width: 0;
    font-size: 13px;
    padding: 0 10px;
  }

  .cart-icon {
    width: 50px;
    height: 50px;
    z-index: 1200;
  }

  .header-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    padding: 14px 12px;
  }

  .header-nav li a {
    font-size: 12px;
    line-height: 1.4;
  }

  .breadcrumb {
    padding: 15px 10px;
  }

  .breadcrumb-content {
    max-width: 100%;
    padding: 12px 14px;
    flex-wrap: wrap;
  }

  .carousel-section {
    padding: 15px 10px;
  }

  .carousel-container {
    width: 100%;
    max-width: 100%;
  }

  .carousel-prev,
  .carousel-next {
    width: 50px;
    font-size: 34px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 20px auto;
    padding: 0 15px;
  }

  .category-card {
    min-height: 118px;
    padding: 22px 18px;
  }

  .product-page {
    padding: 20px 0;
  }

  .container-main {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}
/* ===== AJUSTE MOBILE EXTRA GPT ===== */
@media (max-width: 768px) {
  .header-search {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .header-search select {
    flex: 0 0 45%;
    min-width: 0;
    max-width: 45%;
  }

  .header-search input {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
  }

  .cart-icon {
    position: relative;
  }

  .header-main,
  .header,
  .header-top,
  .header-nav,
  .breadcrumb,
  .carousel-section,
  .product-page,
  .categories-grid,
  .container-main,
  .products-content {
    width: 100%;
    max-width: 100%;
  }

  .carousel-wrapper,
  .carousel-item,
  .carousel-slide,
  .carousel-slide img {
    width: 100%;
    max-width: 100%;
  }

  .container-main {
    display: flex;
    flex-direction: column;
  }

  .intro-products,
  .featured-products,
  .products-intro,
  .section-products {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 15px;
  }

  .intro-products > *,
  .featured-products > *,
  .products-intro > *,
  .section-products > * {
    width: 100% !important;
    max-width: 100% !important;
  }

  .intro-products img,
  .featured-products img,
  .products-intro img,
  .section-products img {
    width: 100% !important;
    height: auto !important;
    display: block;
  }
}
/* ===== AJUSTE SEÇÃO ALGUNS PRODUTOS MOBILE ===== */
@media (max-width: 768px) {
  .carousel-section,
  .carousel-wrapper,
  .carousel-container,
  .carousel-item,
  .carousel-slide {
    width: 100% !important;
    max-width: 100% !important;
  }

  .carousel-section {
    display: block !important;
    padding: 15px !important;
  }

  .carousel-container {
    margin: 0 auto !important;
  }

  .carousel-slide img,
  .carousel-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .carousel-prev,
  .carousel-next {
    width: 45px !important;
    font-size: 30px !important;
  }
}
/* ===== AJUSTE FINAL MOBILE GPT ===== */
@media (max-width: 768px) {
  .cart-icon {
    right: 8px !important;
    top: 165px !important;
    width: 46px !important;
    height: 46px !important;
    padding: 8px !important;
  }

  .cart-icon i {
    font-size: 20px !important;
  }

  #cart-count {
    top: -6px !important;
    right: -6px !important;
    font-size: 11px !important;
  }

  .carousel-container {
    overflow: hidden !important;
  }

  .carousel-wrapper {
    display: block !important;
  }

  .carousel-item {
    width: 100% !important;
  }

  .carousel-item img,
  .carousel-slide img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}
/* ===== AJUSTE MOBILE SEÇÕES INTERNAS GPT ===== */
@media (max-width: 768px) {
  /* Banner / hero das páginas internas */
  .hero,
  .hero-banner,
  .banner-interno,
  .page-banner,
  .projeto-banner,
  .instalacoes-banner {
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    overflow: hidden !important;
  }

  .hero img,
  .hero-banner img,
  .banner-interno img,
  .page-banner img,
  .projeto-banner img,
  .instalacoes-banner img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    display: block !important;
  }

  .hero h1,
  .hero-banner h1,
  .banner-interno h1,
  .page-banner h1,
  .projeto-banner h1,
  .instalacoes-banner h1 {
    font-size: 42px !important;
    line-height: 1.05 !important;
    word-break: break-word !important;
  }

  .hero h2,
  .hero-banner h2,
  .banner-interno h2,
  .page-banner h2,
  .projeto-banner h2,
  .instalacoes-banner h2 {
    font-size: 20px !important;
    line-height: 1.2 !important;
  }

  .hero p,
  .hero-banner p,
  .banner-interno p,
  .page-banner p,
  .projeto-banner p,
  .instalacoes-banner p {
    font-size: 16px !important;
    line-height: 1.4 !important;
  }

  /* Cards de vantagens / benefícios / segmentos */
  .advantages,
  .vantagens,
  .benefits,
  .beneficios,
  .cards-vantagens,
  .cards-beneficios,
  .segmentos,
  .segment-cards,
  .cards-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px !important;
  }

  .advantages .card,
  .vantagens .card,
  .benefits .card,
  .beneficios .card,
  .cards-vantagens .card,
  .cards-beneficios .card,
  .segmentos .card,
  .segment-cards .card,
  .cards-grid .card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 24px 18px !important;
  }

  .advantages .card h3,
  .vantagens .card h3,
  .benefits .card h3,
  .beneficios .card h3,
  .cards-vantagens .card h3,
  .cards-beneficios .card h3,
  .segmentos .card h3,
  .segment-cards .card h3,
  .cards-grid .card h3 {
    font-size: 18px !important;
    line-height: 1.25 !important;
  }

  .advantages .card p,
  .vantagens .card p,
  .benefits .card p,
  .beneficios .card p,
  .cards-vantagens .card p,
  .cards-beneficios .card p,
  .segmentos .card p,
  .segment-cards .card p,
  .cards-grid .card p {
    font-size: 15px !important;
    line-height: 1.45 !important;
  }
}
/* ===== FIM AJUSTE MOBILE SEÇÕES INTERNAS GPT ===== */
/* ===== FIM AJUSTE FINAL MOBILE GPT ===== */
/* ===== FIM AJUSTE SEÇÃO ALGUNS PRODUTOS MOBILE ===== */
/* ===== FIM AJUSTE MOBILE EXTRA GPT ===== */
/* =====  IM AJUSTE MOBILE TESTE GPT ===== */
/* ==========================================================================
   FASE 1 — REFINO VISUAL CONSERVADOR (HOME + HEADER + WHATSAPP + MOBILE)
   ========================================================================== */
:root {
  --phase1-bg: #ffffff;
  --phase1-soft: #f7f8fa;
  --phase1-text: #243042;
  --phase1-orange: #F7941D;
  --phase1-orange-hover: #F9A63A;
  --phase1-line: #e7ebf0;
  --phase1-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

body {
  background-color: var(--phase1-bg);
  color: var(--phase1-text);
}

.header-top {
  background-color: #2E8BC6;
  padding: 10px 4%;
}

.header-top-left {
  padding: 0;
  font-size: 14px;
  font-weight: 500;
}

.header-main {
  background-color: var(--phase1-bg);
  border-bottom: 1px solid var(--phase1-line);
  grid-template-columns: auto minmax(280px, 620px) auto;
}

.header-logo {
  justify-self: start;
}

.header-logo img {
  height: 70px;
  border: 1px solid var(--phase1-line);
  box-shadow: 0 4px 14px rgba(30, 169, 255, 0.12);
}

.header-search {
  border: 1px solid #d9e1ea;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-search button {
  color: var(--phase1-orange);
}

.header-nav ul {
  justify-content: center;
  gap: 26px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.header-nav li a:hover,
.dropdown-menu li a:hover {
  color: var(--phase1-orange);
}

.dropdown-menu {
  border-bottom: 3px solid var(--phase1-orange);
}

.dropdown-menu li a:hover {
  background-color: #fff5ea;
}

.breadcrumb {
  background-color: var(--phase1-soft);
}

.breadcrumb-content {
  border-radius: 10px;
  border-color: var(--phase1-line);
}

.carousel-section,
.product-page {
  background-color: var(--phase1-soft);
}

.carousel-container,
.product-card,
.category-card {
  border: 1px solid var(--phase1-line);
  box-shadow: var(--phase1-shadow);
}

.category-card {
  border-radius: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.product-card:hover {
  transform: translateY(-4px);
}

.filter-dropdown:hover,
.filter-dropdown:focus,
.filter-item:hover {
  color: var(--phase1-orange-hover);
  border-color: var(--phase1-orange);
}

.btn-filter,
.page-num.active {
  background-color: var(--phase1-orange);
  border-color: var(--phase1-orange);
}

.btn-filter:hover {
  background-color: var(--phase1-orange-hover);
}

.btn-clear,
.category-badge {
  color: #fff;
  border-color: var(--phase1-orange);
  background-color: var(--phase1-orange);
}

.btn-add-cart:hover {
  background: #ffe3cb;
}

.cart-icon {
  right: 20px;
  top: auto;
  bottom: 96px;
  background-color: var(--phase1-orange);
  box-shadow: 0 10px 22px rgba(240, 138, 36, 0.35);
}

.cart-icon:hover {
  background-color: var(--phase1-orange-hover);
}

#cart-count {
  background: #ef4444;
}

.whatsapp-float {
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  font-size: 30px;
  border: 3px solid #ffffff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  z-index: 2500;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .header-main {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 16px;
  }

  .header-logo,
  .header-search {
    justify-self: stretch;
  }

  .header-search {
    width: 100%;
  }

  .header-nav ul {
    gap: 14px;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .header-top {
    padding: 10px 12px;
  }

  .header-top-left {
    font-size: 12px;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
  }

  .header-logo img {
    max-height: 62px;
  }

  .header-search {
    border-radius: 12px;
    min-height: 44px;
  }

  .header-search select,
  .header-search input {
    font-size: 13px;
  }

  .header-nav ul {
    gap: 10px 12px;
    padding: 10px 12px;
  }

  .header-nav li a {
    font-size: 11px;
  }

  .breadcrumb-content {
    padding: 12px;
  }

  .carousel-container {
    height: 180px;
  }

  .products-grid {
    gap: 18px;
  }

  .product-card {
    min-height: 420px;
  }

  .product-image-container {
    min-height: 240px;
    padding: 12px;
  }

  .product-info {
    padding: 14px;
  }

  .cart-icon {
    width: 50px;
    height: 50px;
    right: 12px;
    bottom: 86px;
    padding: 10px;
  }

  .cart-icon i {
    font-size: 22px;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
    font-size: 28px;
    right: 12px;
    bottom: 14px;
  }
}

/* ==========================================================================
   FASE 3 — POLIMENTO VISUAL FINAL (HOME)
   ========================================================================== */
:root {
  --p3-text: #1f2937;
  --p3-muted: #667085;
  --p3-orange: #F7941D;
  --p3-orange-soft: #fff3e6;
  --p3-line: #e5eaf0;
}

body {
  color: var(--p3-text);
}

.header-search input::placeholder {
  color: #94a3b8;
}

.breadcrumb-link,
.price-label,
.footer-info li,
.copy {
  color: var(--p3-muted);
}

.carousel-section > div:first-child {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--p3-text);
}

.category-card h3 {
  font-size: 15px;
  letter-spacing: 1.2px;
}

.product-card h3 {
  line-height: 1.35;
}

.product-info {
  gap: 10px;
}

.category-badge {
  letter-spacing: 0.4px;
}

.page-btn,
.page-num {
  border-color: var(--p3-line);
}

.page-btn:hover,
.page-num:hover:not(.active) {
  background-color: var(--p3-orange-soft);
  border-color: #f7c08f;
}

.main-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
  .header-search {
    min-height: 44px;
  }

  .products-header {
    justify-content: center;
  }

  .products-header select {
    width: 100%;
    max-width: 320px;
  }

  .pagination-container {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
    padding: 0 12px 20px;
    box-sizing: border-box;
  }

  .page-numbers {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .page-btn,
  .page-num {
    min-width: 56px;
  }
}

/* ==========================================================================
   FASE 4 — IDENTIDADE PROFISSIONAL (AZUL + LARANJA)
   ========================================================================== */
:root {
  --brand-blue-900: #1F6FA8;
  --brand-blue-700: #1F6FA8;
  --brand-blue-500: #2E8BC6;
  --brand-orange-600: #F9A63A;
  --brand-orange-500: #f7941d;
  --brand-orange-100: #fff0e2;
  --surface-base: #e9eff6;
  --surface-card: #f8fbff;
  --text-strong: #16324f;
  --line-soft: #d8e3ef;
}

body {
  background: linear-gradient(180deg, #edf3fa 0%, var(--surface-base) 100%);
  color: var(--text-strong);
}

.header-top {
  background: var(--brand-blue-900);
}

.header-main {
  background: var(--surface-card);
}

.header-search {
  border: 1px solid var(--line-soft);
}

.header-search button {
  color: var(--brand-orange-600);
}

.header-nav {
  border-bottom: none;
  background: var(--brand-blue-900);
}

.header-nav ul {
  background: transparent;
  box-shadow: none;
}

.header-nav li a:hover,
.dropdown-menu li a:hover {
  color: #d7ebff;
}

.dropdown-menu {
  border-bottom: 3px solid var(--brand-orange-600);
}

.dropdown-menu li a:hover {
  background-color: var(--brand-orange-100);
}

.breadcrumb-content,
.carousel-container,
.product-card,
.products-header select,
.page-btn,
.page-num {
  border: 1px solid var(--line-soft);
  background-color: var(--surface-card);
}

.carousel-section,
.product-page {
  background: transparent;
}

.carousel-prev,
.carousel-next {
  color: var(--brand-orange-600);
}

.carousel-prev:hover,
.carousel-next:hover {
  color: var(--brand-orange-500);
}

.category-card {
  background: linear-gradient(135deg, var(--brand-blue-900), var(--brand-blue-500));
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.card-orange,
.card-red {
  background: linear-gradient(135deg, #F9A63A, var(--brand-orange-500));
}

.card-blue,
.card-light-blue {
  background: linear-gradient(135deg, var(--brand-blue-900), var(--brand-blue-500));
}

.filter-item:hover,
.filter-dropdown:hover,
.filter-dropdown:focus {
  color: var(--brand-blue-700);
  border-color: var(--brand-blue-500);
}

.btn-filter,
.page-num.active,
.btn-clear,
.category-badge {
  background-color: var(--brand-orange-600);
  border-color: var(--brand-orange-600);
}

.btn-filter:hover,
.btn-add-cart:hover {
  background-color: var(--brand-orange-500);
}

.btn-clear {
  color: #ffffff;
}

.cart-icon {
  background: linear-gradient(135deg, var(--brand-blue-900), var(--brand-blue-500));
  box-shadow: 0 10px 24px rgba(31, 95, 168, 0.35);
}

.main-footer {
  background: linear-gradient(135deg, var(--brand-blue-900), var(--brand-blue-700));
}

.copy,
.footer-bottom,
.footer-info a,
.footer-info li,
.schedule-table {
  color: rgba(255, 255, 255, 0.92);
}

/* ==========================================================================
   FASE 5 — PRESENÇA DE MARCA (LOGO + IMAGEM INSTITUCIONAL)
   ========================================================================== */
.brand-showcase {
  padding: 24px 20px 12px;
  background: transparent;
}

.brand-showcase-content {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.brand-copy,
.brand-media {
  background: #f7faff;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 62, 117, 0.06);
}

.brand-copy {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-badge {
  display: inline-flex;
  width: fit-content;
  background: var(--brand-orange-100);
  color: var(--brand-orange-600);
  border: 1px solid #ffd8b8;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.brand-copy h1 {
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  line-height: 1.2;
  color: var(--brand-blue-900);
}

.brand-copy p {
  color: #36597d;
  line-height: 1.6;
  max-width: 62ch;
}

.brand-media {
  overflow: hidden;
}

.brand-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .brand-showcase-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .brand-showcase {
    padding: 16px 12px 8px;
  }

  .brand-copy {
    padding: 20px;
  }

  .brand-media img {
    min-height: 220px;
  }
}

/* ==========================================================================
   HOTFIX — POSIÇÃO DO CARRINHO PRÓXIMO AO WHATSAPP
   ========================================================================== */
.cart-icon {
  position: fixed !important;
  right: 20px !important;
  bottom: 96px !important;
  top: auto !important;
  z-index: 2400 !important;
}

@media (max-width: 768px) {
  .cart-icon {
    right: 12px !important;
    bottom: 86px !important;
    top: auto !important;
  }
}

/* ==========================================================================
   MELHORIAS VISUAIS E DE CONVERSÃO
   ========================================================================== */
.brand-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  background: var(--brand-orange-600);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 22px;
  transition: background-color 0.2s ease;
}

.brand-cta:hover { background: var(--brand-orange-500); }

.trust-seals {
  max-width: 1240px;
  margin: 4px auto 10px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-seal-item {
  background: #f8fbff;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-seal-item i { color: var(--brand-blue-700); }

.categories-grid { gap: 24px; }

.category-card {
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 22px 18px;
}

.category-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.products-grid { gap: 30px; }
.product-info { padding: 18px 22px; }

.product-trust-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.78rem;
  color: #4d4d4d;
}
.product-trust-list li { display: flex; align-items: center; gap: 6px; }
.product-trust-list i { color: #2f9e44; font-size: 0.75rem; }

.whatsapp-float {
  right: 20px;
  bottom: 20px;
  width: auto;
  min-width: 64px;
  height: 64px;
  border-radius: 999px;
  padding: 0 18px;
  gap: 10px;
  font-size: 30px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float span {
  font-size: 0.9rem;
  white-space: nowrap;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

.footer-container {
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .trust-seals { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .trust-seals { grid-template-columns: 1fr; padding: 0 12px; }
  .whatsapp-float {
    right: 12px;
    bottom: 16px;
    width: 52px;
    min-width: 52px;
    height: 52px;
    border-radius: 50%;
    padding: 0;
    font-size: 26px;
  }
  .whatsapp-float span { display: none; }
  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}

/* Dropdown simplificado para menu Monte sua Loja */
.dropdown-menu-monte-loja {
  min-width: 260px;
  max-width: 320px;
}

.header-nav ul.dropdown-menu.dropdown-menu-monte-loja {
  display: block;
  padding-left: 0;
  padding-right: 0;
}

.dropdown-menu-monte-loja li {
  display: block;
  width: 100%;
}

.dropdown-menu-monte-loja li a {
  display: block;
  width: 100%;
  padding: 12px 20px;
  white-space: nowrap;
  line-height: 1.35;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Ajuste visual solicitado: faixa do cabeçalho totalmente branca e logo maior */
.header,
.header-container,
.header-main {
  background: #ffffff;
  background-color: #ffffff;
}

.header-logo img {
  height: 78px;
  max-height: 78px;
  width: auto;
}

@media (max-width: 768px) {
  .header-nav > ul > li.has-dropdown > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 8px;
    line-height: 1.2;
    text-align: center;
  }

  .dropdown-menu-monte-loja {
    left: 50%;
    transform: translateX(-50%);
    min-width: unset;
    width: min(320px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    max-height: min(60vh, 420px);
    overflow-y: auto;
  }

  .dropdown-menu-monte-loja li a {
    padding: 10px 14px;
    font-size: 0.88rem;
    white-space: normal;
  }

  .header-logo img {
    height: 78px;
    max-height: 78px;
    width: auto;
  }
}

/* ==========================================================================
   FULL-WIDTH LAYOUT OVERRIDES
   ========================================================================== */
html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container,
.page-container,
.main-container,
.container-main,
.content-container,
.header-main,
.header-nav ul,
.footer-container,
.trust-seals,
.categories-grid {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.page,
.main-wrapper,
.product-page {
  width: 100%;
  max-width: 100vw;
  margin: 0;
}

section,
.header,
.hero,
.products,
.footer,
.main-footer {
  width: 100%;
  max-width: 100%;
}

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

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
}

/* ======================================================================
   Segmentos (substitui os cards de categoria da home)
   ====================================================================== */
.segment-showcase {
  max-width: 1200px;
  margin: 18px auto 34px;
  padding: 10px 4px 14px;
  background: transparent;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 18px;
}

.segment-nav {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: #eceff3;
  color: #6b7280;
  font-size: 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.segment-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  padding: 8px 2px;
  scrollbar-width: none;
}

.segment-item {
  text-decoration: none;
  color: #4b5563;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 24px;
  border: 1px solid #cfd9e6;
  background: #f3f6fa;
  border-radius: 12px;
  cursor: pointer;
  padding: 14px 12px;
  flex: 0 0 calc((100% - 90px) / 6);
  min-width: 140px;
  min-height: 126px;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.segment-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  transition: transform .2s ease;
}

.segment-item:hover {
  border-color: #afc1d8;
  background: #edf2f8;
  transform: translateY(-2px);
}

.segment-item:hover .segment-icon {
  transform: none;
}

.segment-label {
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}

.segment-track::-webkit-scrollbar { display: none; }

@media (max-width: 1100px) {
  .segment-showcase {
    padding: 8px 0 12px;
    gap: 10px;
  }

  .segment-track {
    gap: 14px;
  }

  .segment-item {
    min-width: 120px;
  }
}

@media (max-width: 640px) {
  .segment-showcase { grid-template-columns: 1fr; }
  .segment-nav { display: none; }
  .segment-track { gap: 12px; }

  .segment-icon {
    width: 72px;
    height: 72px;
  }

  .segment-label {
    font-size: 18px;
  }

  .segment-item {
    flex: 0 0 42vw;
    min-width: 140px;
  }
}

/* ======================================================================
   Carrossel de Promoções (home)
   ====================================================================== */
.promo-showcase {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 8px 20px 10px;
}

.promo-header h2 {
  margin: 0 0 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.promo-title-main {
  font-size: 46px;
  font-weight: 800;
  color: #f7941d;
  line-height: 1;
}

.promo-title-sub {
  font-size: 28px;
  font-weight: 500;
  color: #334155;
}

.promo-carousel {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 14px;
}

.promo-nav {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: #eceff3;
  color: #6b7280;
  font-size: 24px;
  cursor: pointer;
}

.promo-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 2px 12px;
  scrollbar-width: none;
}

.promo-track::-webkit-scrollbar { display: none; }

.promo-card {
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  padding: 12px;
  text-decoration: none;
  color: #1f2937;
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 220px;
}

.promo-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.promo-card h3 {
  font-size: 18px;
  min-height: 44px;
  margin: 8px 0;
}

.promo-price {
  margin: 4px 0 0;
  font-size: 28px;
  color: #111827;
  font-weight: 700;
}

.promo-price-from {
  margin: 8px 0 0;
  font-size: 16px;
  color: #6b7280;
  text-decoration: line-through;
}

@media (max-width: 768px) {
  .promo-showcase { padding: 8px 12px 12px; }
  .promo-title-main { font-size: 34px; }
  .promo-title-sub { font-size: 20px; }
  .promo-carousel { grid-template-columns: 1fr; }
  .promo-nav { display: none; }
  .promo-track { gap: 12px; }
  .promo-card {
    flex: 0 0 80vw;
    min-width: 180px;
  }
  .promo-card img { height: 140px; }
  .promo-price { font-size: 24px; }
}
