main {
    z-index: -1;
    padding: 60px 10px;
    display: flex;
    flex-direction: column;
    h2{
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
        text-align: center;
    }
    .barra-busqueda{
        width: 100%;
        height: 50px;
        gap: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        p{
            font-size: clamp(16px, 20px, 22px);
            font-weight: 600;
        }
        form{
            width: 50%;
            height: 100%;
            input{
                all: unset;
                height: 100%;
                width: 100%;
                border: 1px solid #000;
                padding-left: 10px;
                font-weight: 700;
            }
        }
    }
    .productos-encontrados{
        font-size: clamp(16px, 20px, 26px);
        font-weight: 800;
        margin-top: 20px;
    }

    #filtros form{
        display: flex;
        gap: 15px;
        align-items: center;
        justify-content: start;
        flex-direction: row;
    }
}
@media screen and (max-width: 650px) {
    main {
        margin-top: 90px;
    }
}
