/*======================================================================*/
/* Reset CSS */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    font-family: 'Hindi', sans-serif !important;
    font-weight: 500;
}
html,body{
    width: 100%;
    min-width: 100%;
    overflow-x: hidden;
}
body {
    font-family: 'Hindi', sans-serif !important;
    overflow-x: hidden;
    width: 100vw;
    padding-top:65px;
}
a, button {
    border: none;
    text-decoration: none;
}

:focus {
    outline: none;
}

img, picture {
    display: block;
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

table {
    border-collapse: collapse;
    width: 100%;
}

/* Estilo padrão para todos os links */
a {
    text-decoration: none; /* Remover sublinhado */
    color: black; /* Cor preta para os links */
}

/* Estilo para os links visitados (clicados) */
a:visited {
    color: black; /* Manter a cor preta nos links visitados */
    text-decoration: none; /* Remover sublinhado também nos links visitados */
}

/* Estilo para os links quando o mouse passa sobre eles */
a:hover {
    color: black; /* Manter a cor preta no hover */
}

/* Estilo para o link quando ele é clicado */
a:active {
    color: black; /* Manter a cor preta enquanto o link está sendo clicado */
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/*======================================================================*/
/* Classes Globais */
section {
    display: block;
    float: left;
    width: 100dvw;
}

.maisProdutos {
    height: 172px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;         /* centraliza verticalmente */
    padding:0 !important;
    justify-content: center;     /* centraliza horizontalmente */
}

.maisProdutos > a {
    font-weight: 600;
    background: #06b6fe;
    color: #fff;
    padding: 10px 20px;          /* padding vertical ajustado */
    height: auto;                /* remove a altura fixa */
    line-height: normal;         /* reseta o line-height estranho */
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

h1{
    width: 100%;
    text-align: center;
    padding: 20px 20px 10px 20px;
    color: #191919;
    font-size: 20px;
    font-weight:500;
    text-transform:uppercase;
}
h2, h3 {
    width: 100%;
    text-align: center;
    color: #000;
}

h2 {
    font-size: 24px;
    font-weight: 500;
    color: #191919;
    font-family: 'Hindi', sans-serif !important;
    margin-bottom: 15px;
}

h3 {
    font-size: 16px;
    font-weight: 500;
    color: #191919;
    font-family: 'Hindi', sans-serif !important;
    margin-bottom: 40px;

}
.hide{
    display: none;
}
.linkBlue {
    color: #3498db !important;
    text-decoration: underline;
    font-size: 24px;
    font-weight: 500;
}

.container {
    width: 100%;
    margin: 0 auto;
}
.message,
.error{
    display:none;
}
.tooltip {
    position: absolute;
    background: #3498db;
    color: white;
    -webkit-box-shadow: 4px 4px 12px -3px rgba(51,51,51,0.55);
    -moz-box-shadow: 4px 4px 12px -3px rgba(51,51,51,0.55);
    box-shadow: 4px 4px 12px -3px rgba(51,51,51,0.55);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    display: none;

}
.smartMenuClose{
    height: 50px;
    position:sticky;
    background: #fff;
    display: block;
    z-index: 999;
    top: 0;
    line-height: 0;
    width: 100%;
    padding: 5px 0 0 0;
    font-size: 14px;
    border-bottom: 1px solid #e9e7e7;
    color: #777;
    text-align: center;
}
.smartMenuClose > svg {
    position: absolute;
    left: 10px;
    top: 18px;
    height: 15px;
    width: 15px;
}
.smartMenuContainer{
    position: fixed;
    width: 72dvw;
    height: 100dvh;
    z-index: 10003;
    background: #fff;
    top: 0;
    left: -72dvw;
    padding: 0;
    overflow-x: scroll;
    transition: 0.3s ease-in-out;
}
.smartMenuContainer > ul{
    padding: 30px;
}
.smartMenuShow{
    left: 0;
}
.shadow{
    position: fixed;
    top:0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10002;
    display: none;
}
.grid-categorias {
  display: grid;
  grid-template-columns: 1fr; /* até 4 itens por linha */
  gap: 20px;
  width: 100%;
  padding: 15px;
}

.grid-item {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.75; /* proporção única para todos */
  overflow:hidden;
}
.grid-item-box {
  display: grid;
  place-items: center;
  position: absolute;
  padding: 12px 40px;
  border-radius: 6px;
  color: rgb(25, 25, 25);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s linear;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
}
.grid-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none; /* evita cliques duplicados */
}

.grid-picture img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  transition: transform 0.4s ease;
}

.grid-item:hover .grid-picture img {
  transform: translate(-50%, -50%) scale(1.2);
}
.grid-item:hover .grid-item-box {
  background: rgba(40, 121, 254, 0.9);
  color: #fff;
}
/* Apenas adiciona largura dupla */
.grid-item.duplo {
  aspect-ratio: 2 / 1;
}

.text{
    min-height: 75vh;
    padding: 20px;
}
.text h1{
    font-size: 24px;
    color: #000;
    font-weight: 600;
    margin-bottom: 40px !important;
    width: 100%;
    text-align: center;
}
.text a{
    transition: 0.2s;
}
.text a:hover{
    color: #000;
    font-weight: 600;
}
.text h2{
    margin-top: 30px;
}
.text p{
    font-size: 16px;
    width: 100%;
    margin-bottom: 20px;
    color: #333 !important;
    text-align: left;
    width: 100%;
}
.text h2{
    font-size: 18px !important;
    font-weight: 600 !important;
    text-align: left;
    width: 100%;
}
/***************************************************/
/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 10001; /* Aumentando para garantir que o header também fique acima */
    padding: 15px;
    display: grid;
    align-content: center;
}
#logo{
    height: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -25px;
}
#logo img{
    margin-top: 5px;
    height:100%;
}
header a {
    float: left;
    white-space: nowrap;
}

#headerMenu li{
    display: grid;
    width: 100%;
    height: 50px;
    text-align: left;
}
#headerMenu li a{
    width: 100%;
    font-size: 14px;
    height: 100%;
    padding: 10px;
    color: #191919;
}
#headerMenu li a::after{
    content: '>';
    display: block;
    aspect-ratio: 1/1;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 16px;
    font-weight: 200;
    padding-top: 10px;
    transform: scaleY(2);
}
header ul li div{
    DISPLAY: NONE;
}
.headerActive {
    color: #04729b !important;
}

#carrinhoBtn {
    position: absolute;
    top: -15px;
    right: 0;
    height: 40px;
    width: 40px;
    cursor: pointer;
    background: #fff;
}

#searchBtn{
    position: absolute;
    top: -15px;
    right: 50px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    background: #fff;
}
#menuSmall{
    position: absolute;
    left: 0;
    top: -15px;
    background: none;
}
#menuSmall svg path{
    fill: #191919;
}
#produtosShow{
    position: fixed;
    height: 100dvh;
    display: flex;
    width: 72dvw;
    left: -72dvw;
    top: 0;
    background: #fff;
    z-index: 10010;
    overflow: scroll;
    flex-wrap: wrap;
    transition: 0.3s ease-in-out;
}
.showSubMenu{
    left: 0 !important;
    height: 100dvh !important;
}
#produtosShow ul {
    flex-basis: 100%;
    display: flex;
    margin: 0;
    padding: 0 30px;
    flex-wrap: wrap;
}
#produtosShow ul li {
    flex-basis: 100%;
    transition: 0.05s;
    align-content: center;
    margin-bottom: 0.5dvw
}
#produtosShow ul li:hover {
}
#produtosShow ul li:hover a {
    color: #04729b !important;
}
#produtosShow ul li a {
    font-weight: 500;
    width: 100%;
    text-align: left;
    text-transform: none;
    color: #191919 !important;
}
#produtosShow ul li a::after{
    display: none !important;
}
#carrinhoBtn::after {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    content: attr(data-qtd); /* Pega o valor do atributo 'data-qtd' */
    position: absolute;
    top: -3px;
    right: -5px;
    width: 21px;
    height: 21px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100%;
    background: #3498db; /* Cor do fundo da bolinha */
    visibility: hidden; /* Inicialmente escondido */
}
#carrinhoBtn[data-qtd]:not([data-qtd="0"])::after {
    visibility: visible;
}
#carrinhoBtn svg path,
#searchBtn svg path{
    fill: #191919;
    transition: 0.1s;
}
#searchBtn:hover svg path {
    fill: #04729b;
}
#carrinhoBtn:hover svg path {
    fill: #04729b;
}
#shadow {
    position: fixed;
    top: 0; /* Garante que cubra toda a tela */
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.5); /* Melhor com transparência */
    z-index: 9997;
    display: none;
}
/***************************************************/
/* Search Area */
#search{
    z-index:9999;
    position: fixed;
    top: -170px;
    left: 0;
    width: 100dvw;
    height: 170px;
    background:#fff;
    transition: 0.5s;
    padding: 10px;
}
#search div{
    padding: 20px 0 ;
}

#search label{
    color: #777777;
    font-size: 14px;
    font-weight: 300;
    display:block;
    width: 100%;
}
#search input{
    background: transparent;
    font-size: 24px;
    font-weight: 500;
    border: none;
    border-bottom: 1px solid #eceaea;
    padding: 11px 12px 10px 0px;
    font-family: 'Hind', sans-serif;
    box-shadow: none;
    outline: none;
    width: 100%;
    color: #191919;
    margin-top: 28px;
    border-radius: 0;
    text-transform: uppercase;
}
#search button{
    position: absolute;
    cursor: pointer;
    bottom: 40px;
    padding: 4px 0 4px 4px;
    right: 10px;
    z-index: 3;
    background: none;
    width: 30px;
    height: 30px;
    display: inline-block;
    border: none;
}
#search button:hover svg path{
    fill: #04729b;
}

#closeSearch{
    position: absolute;
    color: #777;
    cursor: pointer;
    right: 0;
    width: 40px;
    height: 40px;
    top: 15px;
    padding: 0 !important;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    display: block;
    z-index: 10;
}
#closeSearch:hover{
    color:red;
}
/***************************************************/
/* Slider */
.slider-container {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    display: flex;
    height: auto;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    aspect-ratio: 1 / 1;
    font-weight: bold;
    color: white;
    position: relative; /* Garante que a imagem posicionada funcione corretamente */
    overflow: hidden; /* Impede que partes extras da imagem fiquem visíveis */
}

.slide picture{
    
    object-fit: cover; /* Faz a imagem cobrir toda a área sem deformar */
    position: relative;
    width: 100%;
}
.buttons {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    height: 90px;
    transform: translateY(-50%);
}
.buttons button {
    background: rgba(0, 0, 0, 0.03);
    color: white;
    border: none;
    padding: 30px;
    cursor: pointer;
    transition: 0.3s;
}
.buttons button:hover{
    background: rgba(0, 0, 0, 0.3);
}
.dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.dot {
    width: 5px;
    height: 5px;
    margin: 5px;
    display: inline-block;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dots > .active {
    background: white;
}

/***************************************************/
/* Botoes Categorias Home */


.fluid-left, .fluid-right {
    width: 100%;
    float: left;
}

.fluid-left > a,
.fluid-right > a {
    display: grid;
    place-items: center;
    width: 100%;
    margin: 0.54dvw;
    height: calc(50% - 1.08dvw);
    float: left;
    cursor: pointer;
    overflow: hidden;
}

.container-fluid div a img {

    width: 100%;
    transition: 0.5s;
}

.container-fluid div a {
    display: grid;
    justify-content: center;
    margin-bottom: 10px;
}
.container-fluid div a:hover img {
    transform: scale(1.1);
}

.container-fluid div a button {
    cursor: pointer;
    font-family: 'Hind', sans-serif;
    height: 50px;
    font-size: 15px;
    text-transform: uppercase;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 7px;
    font-weight: 500;
    transition: 0.5s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.container-fluid div a:hover button {
    background:#3498db;
    color: #fff;
}

.fluid-left-s2 {
    height: calc(100% - 20px) !important;
    float: right !important;
}

.fluid-right-s2 {
    width: calc(100% - 20px) !important;
}

#homeMaisVendidos {
    padding: 20px;
}
#searchProducts{
    padding: 50px 0;
    min-height: 60dvh;
}

#homeMaisProcurados {
    padding: 20px 20px;
}

#homeEnd {
    padding: 20px 0 0 ;
}

/***************************************************/
/* Produtos */
.flexbox {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    
    justify-content: start;
}
.productDisplay {
    width: calc(50% - 10px);
    height: auto;
    overflow: hidden;
    -webkit-box-shadow: 0.09dvw 0.11dvw 0.46dvw -0.27dvw rgba(117, 117, 117, 1);
    -moz-box-shadow: 0.09dvw 0.11dvw 0.46dvw -0.27dvw rgba(117, 117, 117, 1);
    box-shadow: 0.09dvw 0.11dvw 0.46dvw -0.27dvw rgba(117, 117, 117, 1);
    background: #f9f9f9f9
}
.productDisplay div {
    width: 100%;
    height: auto;
    min-height: auto;
    flex: none;
    background: #f9f9f9f9
}
.imgProduct{
    width: 100%;
    position: relative !important;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.productDisplay div a img {
    width: 100%;
    transition: 0.3s;
}
.productDisplay div a:hover img {
    transform: scale(1.1);
}



.productInfo {
    padding-top: 15px;
    background: #fff;
    -webkit-box-shadow: 0 -0.15dvw 0.20dvw -0.11dvw rgba(168, 165, 168, 1);
    -moz-box-shadow: 0 -0.15dvw 0.20dvw -0.11dvw rgba(168, 165, 168, 1);
    box-shadow: 0 -0.15dvw 0.20dvw -0.11dvw rgba(168, 165, 168, 1);
    transition: 0.4s;
}

.productInfo > a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    text-align: center;

    min-height: 52px;
    color: #191919;
    transition: 0.05s;
}

.productInfo a:hover {
    color: #3498db !important;
}

.sku {
    text-align: center;
    font-size: 14px;
    font-weight: lighter;
    color: #555;
    margin: 0 0 15px 0;
}

.colorPicker {
    width: 100%;
    text-align: center;
    list-style: none;
    margin-bottom: 20px;
    padding: 5px;
}

.colorPicker li {
    display: inline-block;
    width: 20%;
    aspect-ratio: 1 / 1; /* Mantém a proporção quadrada */
    cursor: pointer;
    border-radius: 15%;
    vertical-align: middle;
    overflow: hidden;
    transition: 0.05s;
}
.colorPicker li img{
    width:100%;
    height: auto;
    position: absolute;
}
.colorPicker li:hover {
    border:2px solid #3498db
}

.colorActive {
    border: 2px solid #3498db
}

.btnsContainer {
    padding: 10px;
    display: flex;
    flex-direction: column; /* empilha botões */
    align-items: center; /* centraliza */
    width: 100%;
    min-height: 50px;
    gap: 10px; /* espaço de 10px entre botões */
}

/* Mantém o estilo original do cartBtn */
.cartBtn {
    background: #3498db;
    color: #fff;
    padding: 7%;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    transition: 0.05s;
    font-weight: 400;
    font-family: 'Hind', sans-serif !important;
    min-height: 0px;
    width: 100%;
}

.cartBtn > span{
    margin-left:5px;
}
.cartBtn:hover {
    background: #0490c4;
}

/* WhatsAppBtn herdando estilo de cartBtn, mas com cor diferente */
.whatsappBtn {
    background: #25D366;
    padding: 7%;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    transition: 0.05s;
    font-weight: 400;
    font-family: 'Hind', sans-serif !important;
    min-height: 0px;
    width: 100%;
    color:#fff !important;
}
.whatsappBtn svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.whatsappBtn:hover {
    background: #1ebc57;
    color:#fff !important;
}



/***************************************************/
/* Catalogo Home */


#homeCatalogs div a {
    width: 100%;
    aspect-ratio: 1 / 1; /* Mantém a proporção quadrada */
    float: left;
    display: grid;
    place-items: center;
    overflow: hidden;
    margin-bottom: 10px;
}

#homeCatalogs div a img {
    position: absolute;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

#homeCatalogs div a div {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 20px;
    transition: 0.3s;
}

#homeCatalogs div a div span {
    font-weight: bold;
    float: left;
    width: 100%;
    text-align: center;
}

#homeCatalogs div a div span b {
    color: #3498db;

}

#homeCatalogs div a div span:first-child {
    font-size: 15px;
}

#homeCatalogs div a div span:last-child {
    font-size: 15px;
}

#homeCatalogs div a:hover img {
    transform: scale(1.1);
}

#homeCatalogs div a:hover div {
    padding: 1.35dvw;
}

#homeEnd div {
    margin-bottom: 30px;
}
.instaShow a {
    width: 50%;
    aspect-ratio: 1 / 1;
    float: left;
    overflow: hidden;
}

.instaShow a:hover div {
    opacity: 1;
}

.instaShow a img {
    position: absolute;
    height: 100%;
    object-fit: cover;
}

.instaShow a div {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: grid;
    place-items: center;
    opacity: 0;
    transition: 0.2s;
}

.instaShow a svg {
    width: 10%;
}



#newsLetter {
    width: 100%;
    
    height: 50px;
    display: block;
    padding: 10px 0 10px 0;
    background: linear-gradient(270deg, 
        #02bafe, 
        #0389bb, 
        #01a0e2, 
        #02bafe, 
        #0370a3, 
        #0389bb, 
        #01c0ff
    );
    background-size: 800% 800%;
    animation: gradient 7s ease infinite;
}

#newsLetter > .container {
    display: grid;
    place-items: center;
    margin: 0 auto;
    height: 100%;
}

section {
    display: block;
    float:left;
}

footer {
    display: block;
    float: left;
    width: 100%;
    z-index: 1000;
    background:#fff;
}

#newsLetter span {
    font-size: 20px;
    color: #fff;
    position: absolute;
    left: 0;
    top: 5px;
    font-weight: 500;
    width: 100%;
    text-align: center;
}

#newsLetter input {
    height: 40px;
    width: 80%;
    margin: 0;
    font-size: 14px;
    padding: 0 15px 0 15px;
    color: #777777;
    border-radius: 7px 0 0 7px;
    border-color: #fff;
}
#inputNews{
    width: 100%;
    padding: 10px;
    position: absolute;
    top: 50px;
}

#newsLetter input:focus {
    border-color: #000;
}

#newsLetter button {
    background: #333;
    color: #fff;
    font-weight: 400;
    width: 20%;
    height: 40px;
    cursor: pointer;
    font-size: 14px;
    margin-left: -10px;
    border-radius: 0 7px 7px 0;
}

#newsLetter button:hover {
    background: #191919;
}
#socialMedia {
    position: absolute ;
    margin: 0 auto;
    bottom: -5px;
    padding-left: 20px;
}

#socialMedia li {
    display: inline-block;
    aspect-ratio: 1 / 1;
    width: 15%;
    padding: 12px;
}

#socialMedia li a svg {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    transition: 0.2s;
}

#socialMedia li a svg path {
    fill: #fff;
}

#socialMedia li a:hover svg {
    height: 32px;
    width: 32px;
}

#footerMenu {
    background: #f7f8fa;
    padding: 20px 0 20px 0;
    display: flex;
    align-items: flex-start;
}

.fmContainer {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-rows: 1fr;
    width: 100%;
    gap: 10px;
    padding: 20px;
}

.fmContainer > div {
    font-size: 20px;
    padding: 0 10px 0 10px;
    border-bottom: 1px solid #e9e7e7;
    padding-bottom: 20px;
}

.item {
    width: 100%;
    overflow: hidden;
}

.item ul li{
    text-wrap: wrap;
}
.fmContainer div ul span {
    text-transform: uppercase;
    font-size: 16px;
    color: #191919;
    padding-bottom: 2dvw;
    font-weight: 500;

}
.fmContainer div ul li span{
    font-size: 14px;

}
.footerFix{
    width: 100%;
    height: 20px;
}

.fmContainer div ul li,
.fmContainer div ul li a {
    font-size: 14px;
    color: #777777;
    margin: 3px 0 10px 0;
    transition: 0.2s;
    text-wrap: wrap;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.fmContainer div ul li a:hover {
    color: #3498db;
}

.fmContainer div ul li span {
    margin-right: 0.5dvw;
}

#footerL {
    width: 100%;
    height: 150px;
    padding: 20px 0 20px 0;
    background: #000;
}
#footerL > .container {
    display: grid;
    justify-content: center;
    width: 100%;
}
#footerL a {
    width: 50%;
    margin: 0 auto;
}
#footerL a img{
    width: 100%;
    object-fit: cover;
}
#footerL span {
    display: block;
    color: #fff;
    font-size: 14px;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

#productsArea {
    min-height: 100dvh;
    padding: 0 20px 20px 30px;
}
#productsArea h2 {
    width: 100%;
    text-align: left;
    padding: 1.5dvw 0 1.5dvw 0.5dvw;
}
#productsArea nav ul li{
    font-size: 14px;
    color: #191919;
    text-transform: uppercase;
    font-weight: 400;
    overflow:hidden;
    margin-bottom:30px;
}
#productsArea nav ul  li::after{
    display:block;
    position: absolute;
    width: 30px;
    height: 30px;
    content: '+';
    right: 0;
    top: 0;
    font-size: 18px;
    text-align: center;
    padding-top: 5px;
    cursor: pointer;
    font-weight: 100;
}

#productsArea nav ul li.changed::after {
    content: "-";
}
#productsArea nav ul > li > ul > li::after{
    display: none;
}
#productsArea nav ul > li:hover::after {
    color: #3498db; /* Alterar a cor do texto */
}
.active > a,
.subActive > a{
    color:#3498db !important;
}
.subActive{
    padding: 10px 0 !important;
}
.subActive::after{
    display: block !important;
    content: ">>" !important;
    font-size: 12px;
    color:#3498db;
    position: absolute;
    margin-top: 10px;
    font-weight: 100;
}
#productsArea nav ul li ul {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}
#productsArea nav ul li a {
    transition: 0.3s;
    width: 100%;
    display: grid;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #e9e7e7;
    padding: 10px 40px 20px 0;
}
#productsArea nav ul li ul {
    height: 0;
    width: 100%;
    overflow: hidden;
    transition: height 0.3s ease;
}
#productsArea nav ul li > ul li{
    margin-bottom: 0;
    padding: 0;
    border:none;
}
#openProdutosNav{
    width: 50px;
    height: 50px;
    background: #3498db;
    font-size: 14px;
    color: #fff;
    padding: 10px;
    left:0;
    font-weight: 500;
    position: fixed;
    top: 120px;
    z-index: 999;
    border-radius: 0 5px 5px 0;
}
#productsArea nav ul li > ul li a{
    text-transform: none;
    color: #777;
    width: 100%;
    height: 100%;
    font-size: 14px;
    border:none;
    padding: 10px 40px 10px 0 ;
    z-index:9;
}
#productsArea nav ul li:hover > a {
    color: #3498db;
}



#produtos {
    width: 100%;
    padding-top: 50px;

}

#produtos .productDisplay {
    width: calc(50% - 15px) !important;
}

#breadcrumb {
    width: 100%;
    background: #f7f8fa;
    font-size: 16px;
    height: 40px;
    padding-top: 5px;

}

#breadcrumb a {
    color: #777;
    transition: 0.3s;
}

#breadcrumb a:hover {
    color: #3498db;
}

#product {
    width: 100%;
    min-height: 60dvw;
}

#product #breadcrumb {
    margin-bottom: 3dvw;
}


#imgShow button {
    position: absolute;
    cursor: pointer;
}

#imgNext,
#imgPrev {
    height: 40px;
    width: 40px;
    background: #f7f8fa;
    color: #191919;
    top: 45%;
    border-radius: 100%;
    z-index: 30;
}

#imgNext {
    right: 0;
}

#imgPrev {
    left: 0;
}
#imgNext:hover{
    color:#3498db;
}
#imgPrev:hover{
    color:#3498db;
}
.buttonDisable {
    opacity: 0.5;

}
#imgShow img {
    width: 100%; /* Mantém a proporção da imagem */
}
#imgContainer {
    width: 100%;
}
#imgShow {
    width: 100%;
    overflow:hidden;
}
#imgMini {
    width: 100%; /* Garante que o contêiner ocupe toda a largura */
    background: #fff;
    overflow-x: auto !important; /* Habilita scroll horizontal */
    overflow-y: hidden; /* Oculta scroll vertical */
    white-space: nowrap; /* Mantém os itens em uma única linha */
    display: flex; /* Usa flexbox para melhor organização */
    gap: 10px; /* Espaçamento entre imagens */
    
    -webkit-overflow-scrolling: touch; /* Suaviza o scroll em iOS */
    scroll-snap-type: x mandatory; /* Facilita navegação */
}

#productInfo {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
}

#productInfo div {
    flex-basis: 100%;
    text-align: left;
    font-size: 14px;
    ;
    color: #191919;
    font-weight: 300;
    width: 100%;
    margin-bottom: 10px;
}

#sku, #status {
    color: #999999;
}

#productInfo h2 {
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    margin: 15px 0;
}
#cores span {
    width: 100%;
    font-size: 14px;
    color: #04729b;
    font-weight: 500;
}

#cores ul {
    display: block;
    margin: 10px 0;
    width: 100%;
}

#quantyDiv {
    width: 100%;
    height: 50px;
    display: inline-block;
    float: left;
    display: flex;
    margin-top: 20px;
}
#quantyDiv button{
    height: 100%;
    background: #f7f8fa;
    width: 20%;
}
#quantyDiv input{
    width:80%;
    height: 100%;
    background: #f7f8fa;
    border: none;
    text-align: center;
}
#subQt{
    border-radius: 10px 0 0 10px;
}
#sumQt{
    border-radius: 0 10px 10px 0;
}

#addCart {
    width: 100%;
    height: 50px;
    margin-top: 20px;
    border-radius: 10px;
    background: #3498db;
    margin-bottom: 20px;
    color: #fff;
    transition: 0.2s;

}
#linkWhatsApp{
    width: 100%;
    height: 50px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #fff;
    transition: 0.2s;
    padding: 0;   /* remove padding extra */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #25D366;
    
}
#linkWhatsApp > span{
    margin-left:20px;
}
#linkWhatsApp:hover{
    color: #25D366;
    background:#fff;
    border:3px solid #25D366;
}

#addCart:hover {
    background: #fff;
    color: #3498db;
    border: 2px solid #3498db;
}

details {
    width: 100%;
    text-align: left;
    padding-bottom: 20px;
    background: #fff;
    border-bottom: 1px solid #e9e7e7;
    color: #999999;
    margin-top: 20px;
    
}
details summary {
    list-style: none; /* Remove marcador padrão */
    transition: 0.2s;
    margin-bottom: 20px;
    font-weight: 600;
}
details[open] summary{
    color: #191919;
    font-weight: 600;
}

details summary::-webkit-details-marker {
    display: none; /* Remove em navegadores baseados em WebKit (Chrome, Safari, Edge) */
}
details summary:hover{
    color: #191919;
}
details div{
    margin-top:0.7dvw;
    color: #777 !important;
}
details div ul li{
    margin-bottom: 10px;
}
details div ul li span{
    color: #191919;
    font-weight: 500;
    margin-right: 0.3dvw;
}
button {
    cursor: pointer !important;
}
#zoomLens {
    position: absolute;
    width: 200px; /* Tamanho da lupa */
    height: 200px;
    border: 2px solid #3498db;
    background-repeat: no-repeat;
    pointer-events: none; /* Impede interação */
    display: none; /* Oculta inicialmente */
}

#imgMini img{
    height: 150px; /* Altura fixa para manter alinhamento */
    flex-shrink: 0; /* Impede que as imagens diminuam */
    margin-right: 10px;
    cursor: pointer;
    box-sizing: border-box;
    transition: 0.3s;
    display:inline-block;
}
#imgMini img:hover{
    transform: scale(1.1);
}
#imgMini::-webkit-scrollbar {
    height: 8px; /* Altere o tamanho da barra de rolagem */
}

#imgMini::-webkit-scrollbar-thumb {
    background-color: #3498db; /* Cor da barra de rolagem */
    border-radius: 10px;
}

#imgMini::-webkit-scrollbar-track {
    background: #f1f1f1; /* Cor do fundo da barra de rolagem */
}



#cartDisplay h4{
    height: 50px;
    background: #fff;
    display: block;
    text-align: center;
    width: 100%;
    padding: 20px 30px 0 30px;
    color: #777;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 1px solid #e9e7e7;
}
.cartAppend{
    width: 100%;
    padding: 15px 30px 0 30px;
    z-index: 998;
    display: flex;
    flex-wrap: wrap;
    max-height: 50dvh;
    overflow: scroll;
}
.cartClear{
    font-size: 16px;
    text-align: center;
    color: #919191;
}


.cartShow {
    display: flex;
    grid-template-columns: 30% 1fr;
    flex-wrap: wrap;
    flex-basis: 100%;
    margin-bottom: 15px;
    border-bottom:1px solid #ddd;
    padding-right: 30px;
}
.duplicarCart,
.deleteCart{
    width: 30px;
    height: 30px;
    position:absolute;
    right: 0;
    font-size: 14px;
    padding: 5px;
    background:#fff;
    border-radius: 5px;
    transition: 0.1s;
    padding: 5px;
}
.duplicarCart{
    top:50px;
    padding-left: 10px;
}
.deleteCart{
    top: 0;
}
.deleteCart svg path{
    fill: #919191;
}
.cartImage {
    display: flex; /* Usando Flexbox */
    justify-content: center; /* Centraliza horizontalmente */
    flex-wrap: wrap;
    align-items: center; /* Centraliza verticalmente */
    width: 25%;
    height: 100%;
    padding-right: 5px;
}

.cartImage a {
    width: 100%;
    height: auto;
    flex-basis: 100%;
}

.sku{
    display:block;
    width: 100%;
    flex-basis: 100%
}

.cartData {
    width: 75%;
    padding-left: 5px;
}

.nome {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px;
}
.nome a {
    transition: 0.3s;
}
nome:hover a{
    color: #3498db;
}
.cartChange{
    flex-basis: 100%;
    display:flex;
    flex-wrap: wrap;
}
.cartChange div{
    width: 50%;
    flex-basis: 50%;
    padding: 5px;
}
.cartData label {
    font-size: 12px;
    margin-bottom: 5px;
    display: block; /* Adicionando display: block */
    font-weight: 500;
    float:left;
    width: 100%;
    line-height: 35px;
    color: #919191;
}

.cartData input,
.cartData select {
    width: 100%;
    padding: 5px;
    text-align: right;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: block; /* Adicionando display: block */
    background: #fff;
    float:left;
}
.cartLink {
    display: block;
    width: 80%;
    ;
    height: 40px;
    text-align: center;
    color: #fff !important;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 5px;
    background: #0399d0;
    line-height: 40px;
    margin: 30px 10% 0 10%;
}
.disabled{
    opacity: 0.3;
}
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/


.verMais {
    position: relative; /* Adicionado */
    border: 1px solid #ddd;
}

.verMais a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -27%);
    display: block;
    font-size: 20px;
    color: #ddd;
}
#quoteProducts {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Duas colunas de tamanho igual */
    gap: 10px; /* Espaço entre os itens */
    align-items: start; /* Alinha os itens ao topo */
    justify-items: start; /* Alinha os itens à esquerda */
}


#quoteProducts >  .cartShow {
    width: 100%; /* Faz os itens ocuparem toda a coluna */
}
#quoteProducts > .cartShow .cartImage{
    width: 40%;
}
#quoteProducts > .cartShow .cartData{
    width: 60%;
}
#quoteForm{
    position:relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top:40px;
}
.form-group{
    flex-basis: 100%;
    float: left;
    padding:10px;
}
.form-group label{
    position: absolute;
    z-index: 999;
    left: 20px;
    top: 25px;
    font-weight: 600;
    color: #ccc;
    transition: 0.2s ease-in-out;
}
.form-group input,
.form-group textarea{
    width: 100%;
    border: 1px solid #ddd;
    height: 50px;
    border-radius: 10px;
    padding: 5px 15px 0 10px;
    transition: 0.1s ease-in-out;
    color: #191919;
    font-weight: 400;
    font-size: 16px;
}
.form-group textarea{
    min-height: 50px;
    max-height: 200px;
    resize: none;
    overflow-y:hidden;
    padding-top: 20px;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color: #fff;
}
.form-group input:focus,
.form-group textarea:focus{
    border-color: #02a9e6;
}
.form-group:has(input:focus) label,
.form-group:has(textarea:focus) label{
    font-size: 12px;
    top: 14px;
    color: #191919;
}
.form-group:has(input:focus, input:not(:placeholder-shown)) label,
.form-group:has(textarea:focus, textarea:not(:placeholder-shown)) label{
    font-size: 12px;
    top: 14px;
    color: #191919;
}
.formError{
    font-size: 14px;
    padding: 8px;
    margin-top: 10px;
    color: red;
    font-weight: 600;
}
.inputError{
    border:2px solid red !important;
}

.required{
    color: #02a9e6;
    opacity: 0.5;
    font-size: 12px;
    font-weight: 600;
}
#quote{
    padding: 20px;
}
#quote h2{
    margin-top: 30px;
    padding-bottom: 30px;
    font-size: 22px;
}
#quote h3{
    margin-top: 30px;
    padding-bottom: 30px;
    font-size: 22px;
}


#quoteForm button {

    width: 100%;
    background: #02a9e6;
    color: white;
    border: none;
    height: 50px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.2s;
}

#quoteForm button:hover {
    background: #fff;
    color: #04729b;
    border: 2px solid #04729b;
}



/* Celulares e tablet
s pequenos (≥ 576px) */
@media (min-width: 576px) {
    .container {
        width: 540px;
    }

}

/* Tablets e notebooks pequenos (≥ 768px) */
@media (min-width: 768px) {
    .container {
        width: 720px;
    }
    .grid-categorias {
grid-template-columns: repeat(4, 1fr);}
.grid-item.duplo {
  aspect-ratio: 2 / 0.735;
  grid-column: span 2;
}
    #menuSmall{
        display: none;
    }
    #logo{
        float: left;
        left: 0;
        transform: none;
    }
    #newsLetter input{
        width: 300px;
    }
    .cartAppend{
        overflow-x: hidden;
    }
    #cartDisplay{
        width: 20vw;
    }
    #headerMenu{
        position: absolute;
        left: 0;
        width: auto;
        height: 40px;
        overflow: visible;
    }
    #closeSmallMenu{
        display: none;
    }
    #headerMenu ul{
        display: flex;
        flex-wrap: wrap;
        position: absolute;
        width: 700px;
        padding: 0;
        top: -33px;
        left: 170px;
        height: 65px;

    }
    #headerMenu ul li{
        display: block;
        padding:0;
        width: auto;
        float: left;
        height: 65px;
    }
    #headerMenu ul > li > a{
        text-transform: uppercase;
        width: 100%;
        height: 100%;
        padding: 23px 15px 5px 15px;
    }
    #headerMenu ul >  li > a::after{
        display: none;
    }
    header  ul  li:hover > a {
        color: #04729b !important;

    }

    header ul li div {
        display: block;
        position: fixed;
        top: 65px;
        left: 10vw;
        background: #fff;
        width: 800px; /* Permite que os <ul> fiquem lado a lado */
        height: 0 !important;
        overflow: hidden;
        transition: 0.2s ease-in-out;
    }
    header ul li:hover div {
        padding: 0 20px;
        height: 530px !important;
    }

    header ul li div ul {
        position: relative !important;
        float: left;
        display: block !important;
        padding: 0;
        margin: 0;
        list-style: none;
        max-width: 25%;
        width: 25%;
        left: 0 !important;
        top: 15px !important;
    }
    .dot{
        width:15px;
        height:15px;
    }
    .content{
        width: 20%;
    }
    .content h2{
        font-size: 36px;
    }
    .content p{
        font-size: 70px;
    }
    .content span{
        font-size: 16px;
    }
    .content a{
        font-size: 14px;
        height: 50px;
        width: 170px;
        padding-top: 19px;
    }
    header ul li div ul li {
        display: block;
        height: 30px !important;
        width: 100% !important;
        margin: 8px !important;
    }

    header ul li div ul li a {
        padding: 5px !important;
        display: block; /* Faz o <a> ocupar toda a largura da <li> */
        width: 100%;
        height: 100%;
        color: #777777 !important;
        text-transform: none !important;
        word-wrap: break-word; /* Garante a quebra de palavras longas */
        overflow-wrap: break-word;
        word-break: break-word; /* Força quebra de palavras grandes */
        white-space: normal; /* Permite que o texto quebre em várias linhas */
    }




    .slider-container {
        width: 100%;
        aspect-ratio: auto;
        position: relative;
        padding:0;
    }
    .slider{
        height: auto;
        width: 100%;
    }
    .slide{
        width: 100%;
        aspect-ratio: auto;
    }
    
    .productDisplay{
        width: calc(25% - 15px);
    }
    #homeCatalogs > div > a{
        width :33%;
    }
    .instaShow a{
        width: 16.66666666666667%
    }
    #homeCategorias{
        padding: 0 20px;
        margin-bottom: 30px;
    }
    .fluid-left,
    .fluid-right{
        width: 50%;
    }
    .fluid-left a,
    .fluid-right a{
        padding: 0;
    }
    .fluid-left{
        float:left;
    }
    .fluid-right{
        float: right;
    }
    #hChaveiros,
    #hGarrafas,
    #hCanetas,
    #hMochilas{
        width: calc(49.9% - 20px);
        float :left;
    }
    #hEletronicos{
        width: calc(100% - 20px);
    }
    #hCanecas{
        width: calc(49.9% - 20px);
        float: right;
    }
    #produtos{
        width: 75%;
        display:block;
        top:0;
        right:0;
    }
    #productsArea > .container{
        display:flex;
        flex-wrap: wrap;
    }
    #produtos .productDisplay {
     width: calc(33.333333% - 15px) !important;
    }
    #openProdutosNav,#closeProductNav{display:none;}
    #ProdutosNav{
        position: relative;
        width: 25%;
        display:flex;
        height: auto;
        left: 0;
        z-index: 99;
        overflow-x:hidden;
    }
  #newsLetter {  
       height: 50px;


}
#homeCatalogs div{
    padding: 20px;
}
#homeCatalogs div a {
    width: calc(33.3333333% - 20px);
    margin: 10px;
}
#homeCatalogs div a img{
    height:calc( 100% - 20px);
}

/* Primeiro item no topo */
#newsLetter > div > span {
    display:block;
    position: absolute;
left: 0;
   width:30%;
   padding:0;
   top: 32px;
font-size: 16px;
}

/* Item central */
#newsLetter > div > div {
display: flex;
    align-items: center; /* Alinha verticalmente */
    justify-content: center;
width:50%;
left:25%;
position:absolute;
padding: 0;
top: 22px;
}

/* Último item na base */
#newsLetter > div > ul {
display:block;
position:absolute;
right: 0;
width: 25%;
padding: 0;
top: 25px;
}
#newsLetter > div > ul > li {
    padding: 0;
}
.fmContainer{
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
#footerL .container a {
    width: 100%;
    height: 60px;
    box-sizing: border-box; /* Garante que padding não aumente a altura */
    display: flex;
    align-items: center; /* Centraliza a imagem verticalmente */
    justify-content: center; /* Centraliza a imagem horizontalmente (se necessário) */
}

#footerL .container a img {
    max-height: 100%; /* Garante que a imagem se ajuste dentro da altura disponível */
    width: auto; /* Mantém a proporção da imagem */
}

#footerL span{
    display:flex;
    justify-content:center;
    width: 100%;
}
#imgContainer {
    width: 50%;
}
#productInfo{
    width: 50%;
}
#product > div {
    display: flex;
}
#imgMini{
    display: block;
}

#quoteProducts {
    display: grid
;
    grid-template-columns: repeat(3, 3fr);
    gap: 10px;
    align-items: start;
    justify-items: start;
}
.form-group {
    flex-basis: 50%;
}
#quoteEmail{
    flex-basis: 100%;
}
}

/* Desktops médios e telas Full HD (≥ 992px) */
@media (min-width: 992px) {
    .container {
        width: 960px;
    }
    header ul li div{
        left: 10vw;
    }
   .btnsContainer {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    /* Botão Orçamento reduzido */
    .cartBtn {
        width: auto;
        padding: 10px 20px;
        height: 40px; /* altura fixa para referência */
    }

    /* Botão WhatsApp igual altura ao Orçamento e quadrado */
    .whatsappBtn {
        height: 40px; /* mesma altura do orçamento */
        width: 40px;  /* largura igual altura → quadrado */
        padding: 0;   /* remove padding extra */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Some o texto */
    .whatsappBtn span {
        display: none;
    }

    /* Centraliza o SVG no quadrado */
    .whatsappBtn svg {
        margin: 0;
        width: 20px;
        height: 20px;
    }


}

/* Desktops grandes e telas widescreen (≥ 1200px) */
@media (min-width: 1200px) {
    .container {
        width: 1140px;
    }
    header ul li div{
        left: 20vw;
    }
}

/* Monitores ultra widescreen ou 4K (≥ 1400px) */
@media (min-width: 1400px) {
    .container {
        width: 1200px;
    }

}
