.petal {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #FF7300;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    transform: rotate(-20deg);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, filter 0.2s;
}

.petal.moving {
    filter: brightness(1.2);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.8);
}

.petals-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    pointer-events: none;
    z-index: 9999;
}

@media (max-width: 768px) { /* Ajusta el ancho según tus necesidades */
    .petals-container {
        display: none; /* Oculta el contenedor en pantallas pequeñas */
    }
}