.menu a{
    transition: all 0.3s ease !important;
}

.menu a:hover {
    transform: translateX(0.7em) !important;
    color: orange !important;
    font-weight: bolder !important;
}

@keyframes fall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(100vh) translateX(var(--drift)) rotate(360deg);
        opacity: 0;
    }
}



#petal-container {
    position: absolute;
    /*fixed tambem funciona, mas aparentemente pega a tela inteira*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: 30px;
    height: auto;
    opacity: 1;
    pointer-events: none;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translate3d(0,0,0);
    transition: transform 0.1s linear;
    animation: fall linear infinite;
}


.titulo-vitrine {
  background-color: #000000; /* fundo preto estilo giz */
  color: #ffffff; /* texto branco */
  font-weight: bold;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 1.4rem;
  letter-spacing: 1px;

  /* Neon azul claro */
  text-shadow: 0 0 5px #00eaff,
               0 0 10px #00eaff,
               0 0 20px #00eaff,
               0 0 40px #00eaff;
  
  box-shadow: inset 0 0 10px r
}


@keyframes neonGlow-Text {
    from {
        text-shadow:
            0 0 5px #00f0ff,
            0 0 10px #00f0ff,
            0 0 15px #00f0ff,
            0 0 20px #00f0ff,
            0 0 25px rgba(0, 240, 255, 0.5),
            0 0 30px rgba(0, 240, 255, 0.4),
            0 0 35px rgba(0, 240, 255, 0.3);
    }
    to {
        text-shadow:
            0 0 10px #00f0ff,
            0 0 20px #00f0ff,
            0 0 30px #00f0ff,
            0 0 40px #00f0ff,
            0 0 50px rgba(0, 240, 255, 0.5),
            0 0 60px rgba(0, 240, 255, 0.4),
            0 0 70px rgba(0, 240, 255, 0.3);
    }
}

.titulo-categoria strong{
    text-transform: uppercase;
    font-weight: bold;
    opacity: 1;
    color: #ffffff !important;
    transition: opacity 0.7s ease, transform 0.7s ease;
    animation: neonGlow-Text 1.5s ease-in-out infinite alternate;
    margin-top: 5% !important;
}

.departamento-titulo{
    color: white !important;
}

.titulo-lancamento-azul strong{
    color: #333 !important;
    display: inline-block !important;
    animation: none !important;
    transition: none !important;
}
.titulo-lancamento-azul strong span {
    display: inline-block;
    transition: color 0.3s ease;
}
.titulo-lancamento-azul strong span.active {
   color: rgb(167,116,182) !important; 
}

.vitrine-marcas{
    background-color: #070708 !important;
}
