/*CUBO AJPETRUS*/
/* cena */
.scene {
  width: 10em;
  height: 10em;
  perspective: 20em;
  position: absolute;
  transform: scale(2.5);
  z-index: -1;
  opacity: 0.2;
    left:-33px
}

/* cubo */
.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: spinY 11s linear infinite;
}

@keyframes spinY {
  from {
    transform: translateZ(-5em) rotateY(0deg);
  }
  to {
    transform: translateZ(-5em) rotateY(360deg);
  }
}

/* faces base */
.face {
  position: absolute;
  width: 10em;
  height: 10em;
  box-sizing: border-box;

  border: 1px solid #6292db;        /* linhas vermelhas */
  backface-visibility: hidden; /* nÃ£o mostra faces de trÃ¡s */
}

.front {
  transform: rotateY(0deg) translateZ(5em);
  background: linear-gradient(
    to right,
    #666,
    #333
  );
}

.back {
  transform: rotateY(180deg) translateZ(5em);
  background: linear-gradient(
    to right,
    #666,
    #333
  );
}

.right {
  transform: rotateY(90deg) translateZ(5em);
  background: linear-gradient(
    to right,
    var(--cor-primaria),
    var(--cor-terciaria)
  );
}
.left {
  transform: rotateY(-90deg) translateZ(5em);
  background: linear-gradient(
    to right,
    var(--cor-primaria),
    var(--cor-terciaria)
  );
}
.top {
  transform: rotateX(90deg) translateZ(5em);
  background: linear-gradient(
    to bottom,
    #d8d8d8,
    #b5b5b5
  );
}
.bottom {
  transform: rotateX(-90deg) translateZ(5em);
  background: linear-gradient(
    to bottom,
    #5a5a5a,
    #3a3a3a
  );
}

/*//*/

article#produtos > * {  
     -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
article#produtos {
    display: flex;
    padding: 88px 7%;
    flex-direction: column;
    /* min-height: 77vh; */
    justify-content: center;
    align-items: center;
    background-color: var(--cor-secundaria);
    position: relative;
    background-color: var(--cor-terciaria);
}
article#produtos .descricao {
    color: var(--cor-primaria);
    font-size: 44px;
    font-weight: 800;
    display: block;
    /* max-width: 455px; */
    margin: 0 0 33px;
}

.w-produtos-grid {display: flex;width: 100%;justify-content: space-evenly;margin: 0 auto;flex-wrap: wrap;gap: 22px;}

article#produtos .w-produtos-item {
    position: relative;
    overflow: hidden;
    float: left;
    width: 100%;
    height: auto;
    background-color: #fff;
    max-width: 333px;
    border-radius: 11px;
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
    top: 0;
}
article#produtos .w-produtos-item:hover { top:-12px}
.w-produtos-icone {
    background-color: var(--cor-primaria);
    position: absolute;
    left: 0px;
    top: 0;
    height: 68px;
    width: 62px;
    -webkit-mask-image: url('../../images/simbolo.png');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position:  0px 0px;
    mask-image: url('../../images/simbolo.png');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: 0px 0px;
     /* Garante que o vÃ­deo preencha o container */
    z-index: 999; /* Fica sobre os outros elementos */
    box-shadow: 0 0 15px rgba(0,0,0,0.4); /* Moldura sombra opcional */
    display: flex;
    justify-content: center;
    align-items: center;
}
.w-produtos-icone img{position: relative;/* left: 11px; *//* top: 11px; */width: 40px;}
article#produtos .w-produtos-item .w-produto-content {
    position: relative;
    width: 100%;
    padding: 88px 33px 44px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    text-align: left !important;
    font-size: 14px;
}
article#produtos .w-produtos-item .w-produto-content a.bt {margin: 22px 0 0 0}
article#produtos .icone {
    display: block;
    width: 55px;
    height: 55px;
    overflow: hidden;
}

article#produtos .icone a {
    width: 100%;
    height: 100%;
}
article#produtos .icone a img {filter: brightness(0.5);}

article#produtos a.tit {
    color: #999;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
}



article#produtos .resumo {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -333px;
    left: 0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18px;
    color: #999;
    font-size: 14px;
    opacity: 0;
    transition-delay: 0.0s; /* ajuste o valor conforme necessÃ¡rio */
    text-align: center;
}
article#produtos .resumo img{ width:55px !important}

article#produtos .texto {
    padding-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    transition-delay: 0.3s; /* ajuste o valor conforme necessÃ¡rio */
    text-align: center;
}
article#produtos .w-produtos-item > div:hover .texto {
    bottom: -50px;
    opacity: 1;
    transition-delay: 0.0s; /* ajuste o valor conforme necessÃ¡rio */
}
article#produtos .w-produtos-item > div:hover .resumo {
    bottom: 0px;
    opacity: 1;
    transition-delay: 0.3s;
}
article#produtos .bloco1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
article#produtos .bloco1 > *{
    text-align: center !important;
}

article#produtos .bloco2 {
    width: 100%;
}

@media (max-width: 700px) {
    article#produtos {
        flex-direction: column;
        padding: 40px 5%;
        min-height: auto;
    }

    article#produtos .descricao {
        font-size: 22px;
        max-width: 100%;
        /* text-align: center; */
        margin-bottom: 20px;
    }

    article#produtos .w-produtos-item {
        padding: 0px;
        /* padding-bottom: 100%; */
    }

    article#produtos .icone {
        width: 40px;
        height: 40px;
    }

    article#produtos a.tit {
        font-size: 16px;
    }

    article#produtos .resumo {
        padding: 12px;
        bottom: 0;
        opacity: 1;
        /* background-color: rgba(0, 0, 0, 0.6); */
        transition: none;
    }

    article#produtos .texto {
        display: none; /* Torna o elemento completamente invisÃ­vel */
    }

    /* Impede que os links sejam clicÃ¡veis */
    article#produtos a {
        /* pointer-events: none; */ /* Desativa todos os eventos de clique */
        cursor: default; /* Altera o cursor para o padrÃ£o */
    }

    article#produtos .bloco1, 
    article#produtos .bloco2 {
        width: 100%;
    }
}



