@import "default";

.produtos{
    
    &:hover  a{
        .opacity(.6);
    }
    
    a{
        .transition;
        margin-top:15px;
        margin-bottom: 15px;
        text-decoration:none;
        span.title{
            color:@blue;
            .font;
            font-size:13px;
            font-weight:bold;
            border-bottom:1px solid @blue;
            margin-bottom:5px;
            padding-bottom:5px;
            display:block;
        }
        
        &:hover{
            .opacity(1);
        }
    }
    
}